diff --git a/RELEASE-v0.9.md b/RELEASE-v0.9.md index 1c271e189..940eeb56e 100644 --- a/RELEASE-v0.9.md +++ b/RELEASE-v0.9.md @@ -422,6 +422,7 @@ perform the Xous firmware upgrade. This requires running manual update commands, - Harden EC against power glitches during updates (requires EC update - do not plug or unplug USB during an update until this patch is finished updating) - Some housekeeping on the Xous wiki. Much more work is needed. - Delay PDDB mount dialogs until all update checks are completed. This is done with a call named `is_ec_ready` and `set_ec_ready` in the `llio`. Nominally, it can be set/unset to indicate if the EC is going into an update state. Initially it is unset, and it is set by the status loop once all the update activities are completed. But it could be set later on by a routine that manually initiates EC updates (although there is no sanctioned way to do that at the moment). +- Fix validator to accept `tz_offset` == 0 as valid so long as the `utc_offset` is also not 0. ## Roadmap - Lots of testing and bug fixes diff --git a/services/dns/src/time.rs b/services/dns/src/time.rs index e922930b0..0b90ccb51 100644 --- a/services/dns/src/time.rs +++ b/services/dns/src/time.rs @@ -456,7 +456,7 @@ pub fn start_time_server() { } }), Some(TimeOp::WallClockTimeInit) => xous::msg_blocking_scalar_unpack!(msg, _, _, _, _, { - if utc_offset_ms == 0 || tz_offset_ms == 0 { + if utc_offset_ms == 0 && tz_offset_ms == 0 { xous::return_scalar(msg.sender, 0).unwrap(); } else { xous::return_scalar(msg.sender, 1).unwrap();