From: Harlan Stenn Date: Fri, 18 May 2001 00:31:48 +0000 (-0000) Subject: ChangeLog, ntp_syscall.h: X-Git-Tag: NTP_4_0_99_M~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a48b29558927c979b1ec9351d17f4f0380d38a2;p=thirdparty%2Fntp.git ChangeLog, ntp_syscall.h: * include/ntp_syscall.h (ntp_gettime): Fill in the tai member. Reported by Ulrich and Reg. bk: 3b046d74DG2FrCl58DJzgOypIWlRzQ --- diff --git a/ChangeLog b/ChangeLog index 9fb59cda29..6cf15c0d69 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-05-17 Harlan Stenn + * include/ntp_syscall.h (ntp_gettime): Fill in the tai member. + Reported by Ulrich and Reg. + * configure.in: 4.0.99k37 * ntpd/ntp_proto.c (clock_filter): Lose "off", xtemp and ytemp, diff --git a/include/ntp_syscall.h b/include/ntp_syscall.h index ff649c9a10..d5e4ce9e23 100644 --- a/include/ntp_syscall.h +++ b/include/ntp_syscall.h @@ -33,6 +33,7 @@ ntp_gettime( tntx.modes = 0; result = __adjtimex (&tntx); + ntv->tai = tntx.tai; ntv->time = tntx.time; ntv->maxerror = tntx.maxerror; ntv->esterror = tntx.esterror;