diff options
-rw-r--r-- | sys/kern/kern_ntptime.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/kern/kern_ntptime.c b/sys/kern/kern_ntptime.c index 8bf109b..af3b3f1 100644 --- a/sys/kern/kern_ntptime.c +++ b/sys/kern/kern_ntptime.c @@ -351,12 +351,6 @@ ntp_adjtime(struct thread *td, struct ntp_adjtime_args *uap) time_status |= STA_CLK; if (modes & MOD_CLKA) time_status &= ~STA_CLK; - if (modes & MOD_OFFSET) { - if (time_status & STA_NANO) - hardupdate(ntv.offset); - else - hardupdate(ntv.offset * 1000); - } if (modes & MOD_FREQUENCY) { freq = (ntv.freq * 1000LL) >> 16; if (freq > MAXFREQ) @@ -369,6 +363,12 @@ ntp_adjtime(struct thread *td, struct ntp_adjtime_args *uap) pps_freq = time_freq; #endif /* PPS_SYNC */ } + if (modes & MOD_OFFSET) { + if (time_status & STA_NANO) + hardupdate(ntv.offset); + else + hardupdate(ntv.offset * 1000); + } /* * Retrieve all clock variables. Note that the TAI offset is |