From 92acaa504bcfa4d025014a84cfbcca663904f00a Mon Sep 17 00:00:00 2001 From: Harlan Stenn Date: Sat, 26 Jan 2008 03:46:39 -0500 Subject: [PATCH] ntp_control.c: LEAPTAB is a filestamp, not an unsigned. From Dave Mills. bk: 479af36f3R-_-jTJVAl6lUKEkxyRFQ --- ChangeLog | 1 + ntpd/ntp_control.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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; -- 2.47.3