From: Harlan Stenn Date: Sun, 7 Nov 2010 02:00:48 +0000 (-0400) Subject: Correct frequency estimate with no drift file, from David Mills X-Git-Tag: NTP_4_2_7P79~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8e4c927285aee09c2af9b6ec08d6b5d1a358c13;p=thirdparty%2Fntp.git Correct frequency estimate with no drift file, from David Mills bk: 4cd60850D0GCsXvTdMcVkdifvrcIiQ --- diff --git a/ChangeLog b/ChangeLog index 985892297..407f4260f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,4 @@ +* Correct frequency estimate with no drift file, from David Mills. (4.2.7p78) 2010/11/04 Released by Harlan Stenn * [Bug 1697] filegen implementation should be improved. * Refactor calendar functions in terms of new common code. diff --git a/ntpd/ntp_loopfilter.c b/ntpd/ntp_loopfilter.c index 461426fe8..68375efa5 100644 --- a/ntpd/ntp_loopfilter.c +++ b/ntpd/ntp_loopfilter.c @@ -439,7 +439,7 @@ local_clock( */ case EVNT_FREQ: if (mu < clock_minstep) - return (0); + break; clock_frequency = direct_freq(fp_offset); rstclock(EVNT_SYNC, 0);