]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
ntp_control.c: LEAPTAB is a filestamp, not an unsigned. From Dave Mills.
authorHarlan Stenn <stenn@ntp.org>
Sat, 26 Jan 2008 08:46:39 +0000 (03:46 -0500)
committerHarlan Stenn <stenn@ntp.org>
Sat, 26 Jan 2008 08:46:39 +0000 (03:46 -0500)
bk: 479af36f3R-_-jTJVAl6lUKEkxyRFQ

ChangeLog
ntpd/ntp_control.c

index c0557418782d6535bf2c22ea6057ab9d65fec468..9170510a60b520feac24b73a728a12a554ed77e2 100644 (file)
--- 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.
index cb27a6f29a35038588cec709e8a3b79403a0cdad..f99f5685d0723c2154616ff6e97ffa4bdf0bc986 100644 (file)
@@ -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;