From: Harlan Stenn Date: Sat, 26 Jan 2008 08:46:39 +0000 (-0500) Subject: ntp_control.c: LEAPTAB is a filestamp, not an unsigned. From Dave Mills. X-Git-Tag: NTP_4_2_5P110~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92acaa504bcfa4d025014a84cfbcca663904f00a;p=thirdparty%2Fntp.git ntp_control.c: LEAPTAB is a filestamp, not an unsigned. From Dave Mills. bk: 479af36f3R-_-jTJVAl6lUKEkxyRFQ --- diff --git a/ChangeLog b/ChangeLog index c05574187..9170510a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,4 @@ +* ntp_control.c: LEAPTAB is a filestamp, not an unsigned. From Dave Mills. * ntp_config.c: ntp_minpoll fixes from Dave Mills. * ntp-keygen updates from Dave Mills. * refresh epoch, throttle, and leap cleanup from Dave Mills. diff --git a/ntpd/ntp_control.c b/ntpd/ntp_control.c index cb27a6f29..f99f5685d 100644 --- a/ntpd/ntp_control.c +++ b/ntpd/ntp_control.c @@ -1393,7 +1393,7 @@ ctl_putsys( case CS_LEAPTAB: if (leap_sec > 0) - ctl_putuint(sys_var[CS_LEAPTAB].text, + ctl_putfs(sys_var[CS_LEAPTAB].text, leap_sec); break;