diff options
author | delphij <delphij@FreeBSD.org> | 2016-06-03 08:00:22 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2016-06-03 08:00:22 +0000 |
commit | d64b1a0b83003cfde6f14f443cc77ef5d4fb93a2 (patch) | |
tree | 042fe6d27b8d21e4a753d870e62e6ddf906a9a7b /contrib/ntp/ntpd/refclock_parse.c | |
parent | 2471e9df433f5cfb8d4f26165b81c37f0122e250 (diff) | |
parent | 5a3cfd0dbd10b07725e7ba923e5b0ebbe9919c77 (diff) | |
download | FreeBSD-src-d64b1a0b83003cfde6f14f443cc77ef5d4fb93a2.zip FreeBSD-src-d64b1a0b83003cfde6f14f443cc77ef5d4fb93a2.tar.gz |
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
With hat: so
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); } } |