diff options
author | delphij <delphij@FreeBSD.org> | 2016-06-03 08:59:21 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2016-06-03 08:59:21 +0000 |
commit | 44c8cba6e996652b9cdfd78253e42306fa801bfe (patch) | |
tree | 6b4132b9c90b2c64b9b419a04d40e1c2801056c9 /contrib/ntp/ntpd/refclock_parse.c | |
parent | 8a2e3313aaf94ab07f681acfb2da86986ed576d8 (diff) | |
download | FreeBSD-src-44c8cba6e996652b9cdfd78253e42306fa801bfe.zip FreeBSD-src-44c8cba6e996652b9cdfd78253e42306fa801bfe.tar.gz |
MFC r301247: MFV r301238:
ntp 4.2.8p8.
Security: CVE-2016-4957, CVE-2016-4953, CVE-2016-4954
Security: CVE-2016-4955, CVE-2016-4956
Security: FreeBSD-SA-16:24.ntp
Relnotes: yes
Diffstat (limited to 'contrib/ntp/ntpd/refclock_parse.c')
-rw-r--r-- | contrib/ntp/ntpd/refclock_parse.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/ntp/ntpd/refclock_parse.c b/contrib/ntp/ntpd/refclock_parse.c index eb69dcb..aa9d2f2 100644 --- a/contrib/ntp/ntpd/refclock_parse.c +++ b/contrib/ntp/ntpd/refclock_parse.c @@ -2264,8 +2264,8 @@ local_input( if (debug > 3) { printf( - "parse: local_receive: fd %d PPSAPI seq %ld - PPS %s\n", - rbufp->fd, + "parse: local_receive: fd %ld PPSAPI seq %ld - PPS %s\n", + (long)rbufp->fd, (long)pps_info.assert_sequence + (long)pps_info.clear_sequence, lfptoa(&parse->parseio.parse_dtime.parse_ptime.fp, 6)); } @@ -2277,8 +2277,8 @@ local_input( if (debug > 3) { printf( - "parse: local_receive: fd %d PPSAPI seq assert %ld, seq clear %ld - NO PPS event\n", - rbufp->fd, + "parse: local_receive: fd %ld PPSAPI seq assert %ld, seq clear %ld - NO PPS event\n", + (long)rbufp->fd, (long)pps_info.assert_sequence, (long)pps_info.clear_sequence); } } @@ -2291,8 +2291,8 @@ local_input( if (debug > 3) { printf( - "parse: local_receive: fd %d PPSAPI time_pps_fetch errno = %d\n", - rbufp->fd, + "parse: local_receive: fd %ld PPSAPI time_pps_fetch errno = %d\n", + (long)rbufp->fd, errno); } } |