svn commit: r316517 - in user/cperciva/freebsd-update-build/patches: 10.1-RELEASE 10.2-RELEASE 10.3-RELEASE 11.0-RELEASE 9.3-RELEASE

Xin LI delphij at FreeBSD.org
Wed Apr 5 06:37:20 UTC 2017


Author: delphij
Date: Wed Apr  5 06:37:19 2017
New Revision: 316517
URL: https://svnweb.freebsd.org/changeset/base/316517

Log:
  Add recent patches.

Added:
  user/cperciva/freebsd-update-build/patches/10.1-RELEASE/44-SA-16:37.libc
  user/cperciva/freebsd-update-build/patches/10.1-RELEASE/45-SA-16:39.ntp
  user/cperciva/freebsd-update-build/patches/10.2-RELEASE/27-SA-16:37.libc
  user/cperciva/freebsd-update-build/patches/10.2-RELEASE/28-SA-16:39.ntp
  user/cperciva/freebsd-update-build/patches/10.3-RELEASE/14-SA-16:37.libc
  user/cperciva/freebsd-update-build/patches/10.3-RELEASE/15-SA-16:39.ntp
  user/cperciva/freebsd-update-build/patches/10.3-RELEASE/16-SA-17:01.openssh
  user/cperciva/freebsd-update-build/patches/10.3-RELEASE/16-SA-17:02.openssl
  user/cperciva/freebsd-update-build/patches/11.0-RELEASE/5-SA-16:37.libc
  user/cperciva/freebsd-update-build/patches/11.0-RELEASE/6-SA-16:39.ntp
  user/cperciva/freebsd-update-build/patches/11.0-RELEASE/7-SA-17:01.openssh
  user/cperciva/freebsd-update-build/patches/11.0-RELEASE/8-EN-17:01.pcie
  user/cperciva/freebsd-update-build/patches/11.0-RELEASE/8-EN-17:02.yp
  user/cperciva/freebsd-update-build/patches/11.0-RELEASE/8-EN-17:03.hyperv
  user/cperciva/freebsd-update-build/patches/11.0-RELEASE/8-EN-17:04.mandoc
  user/cperciva/freebsd-update-build/patches/11.0-RELEASE/8-SA-17:02.openssl
  user/cperciva/freebsd-update-build/patches/9.3-RELEASE/52-SA-16:37.libc
  user/cperciva/freebsd-update-build/patches/9.3-RELEASE/53-SA-16:39.ntp

Added: user/cperciva/freebsd-update-build/patches/10.1-RELEASE/44-SA-16:37.libc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ user/cperciva/freebsd-update-build/patches/10.1-RELEASE/44-SA-16:37.libc	Wed Apr  5 06:37:19 2017	(r316517)
@@ -0,0 +1,43 @@
+--- lib/libc/net/linkaddr.c.orig
++++ lib/libc/net/linkaddr.c
+@@ -125,7 +125,7 @@
+ 	static char obuf[64];
+ 	_Static_assert(sizeof(obuf) >= IFNAMSIZ + 20, "obuf is too small");
+ 	char *out;
+-	const char *in, *inlim;
++	const u_char *in, *inlim;
+ 	int namelen, i, rem;
+ 
+ 	namelen = (sdl->sdl_nlen <= IFNAMSIZ) ? sdl->sdl_nlen : IFNAMSIZ;
+@@ -142,11 +142,11 @@
+ 		}
+ 	}
+ 
+-	in = (const char *)sdl->sdl_data + sdl->sdl_nlen;
++	in = (const u_char *)sdl->sdl_data + sdl->sdl_nlen;
+ 	inlim = in + sdl->sdl_alen;
+ 
+ 	while (in < inlim && rem > 1) {
+-		if (in != (const char *)sdl->sdl_data + sdl->sdl_nlen) {
++		if (in != (const u_char *)sdl->sdl_data + sdl->sdl_nlen) {
+ 			*out++ = '.';
+ 			rem--;
+ 		}
+@@ -154,15 +154,14 @@
+ 		if (i > 0xf) {
+ 			if (rem < 3)
+ 				break;
++			*out++ = hexlist[i >> 4];
+ 			*out++ = hexlist[i & 0xf];
+-			i >>= 4;
+-			*out++ = hexlist[i];
+ 			rem -= 2;
+ 		} else {
+ 			if (rem < 2)
+ 				break;
+ 			*out++ = hexlist[i];
+-			rem++;
++			rem--;
+ 		}
+ 	}
+ 	*out = 0;

Added: user/cperciva/freebsd-update-build/patches/10.1-RELEASE/45-SA-16:39.ntp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ user/cperciva/freebsd-update-build/patches/10.1-RELEASE/45-SA-16:39.ntp	Wed Apr  5 06:37:19 2017	(r316517)
@@ -0,0 +1,17239 @@
+--- contrib/ntp/ChangeLog.orig
++++ contrib/ntp/ChangeLog
+@@ -1,4 +1,73 @@
+ ---
++(4.2.8p9) 2016/11/21 Released by Harlan Stenn <stenn at ntp.org>
++(4.2.8p9) 2016/MM/DD Released by Harlan Stenn <stenn at ntp.org>
++
++* [Sec 3119] Trap crash <perlinger at ntp.org>
++* [Sec 3118] Mode 6 information disclosure and DDoS vector <perlinger at ntp.org>
++  - TRAP config via mode 6 packet requires AUTH now.
++* [Sec 3114] Broadcast Mode Replay Prevention DoS
++  - applied patches by Matthew Van Gundy. <perlinger at ntp.org>
++  - with bcpollbstep, tweaks and cleanup by stenn at ntp.org
++* [Sec 3113] Broadcast Mode Poll Interval Enforcement DoS <perlinger at ntp.org>
++  - applied fix as suggested by Matthew Van Gundy
++* [Sec 3110] Windows: ntpd DoS by oversized UDP packet
++  - fixed error handling for truncated UDP packets. <perlinger at ntp.org>
++* [Sec 3102] Zero origin issues.  HStenn.
++* [Sec 3082] null pointer dereference in _IO_str_init_static_internal()
++  - more hardening to read_mru_list(). perlinger at ntp.org
++* [Sec 3072] Attack on interface selection <perlinger at ntp.org>
++  - implemented Miroslav Lichvars <mlichvar at redhat.com> suggestion
++    to skip interface updates based on incoming packets
++* [Bug 3142] bug in netmask prefix length detection <perlinger at ntp.org>
++* [Bug 3138] gpsdjson refclock should honor fudgetime1. stenn at ntp.org
++* [Bug 3129] Unknown hosts can put resolver thread into a hard loop
++  - moved retry decision where it belongs. <perlinger at ntp.org>
++* [Bug 3125] NTPD doesn't fully start when ntp.conf entries are out of order
++  using the loopback-ppsapi-provider.dll <perlinger at ntp.org>
++* [Bug 3116] unit tests for NTP time stamp expansion. <perlinger at ntp.org>
++* [Bug 3100] ntpq can't retrieve daemon_version <perlinger at ntp.org>
++  - fixed extended sysvar lookup (bug introduced with bug 3008 fix)
++* [Bug 3095] Compatibility with openssl 1.1 <perlinger at ntp.org>
++  - applied patches by Kurt Roeckx <kurt at roeckx.be> to source
++  - added shim layer for SSL API calls with issues (both directions)
++* [Bug 3089] Serial Parser does not work anymore for hopfser like device
++  - simplified / refactored hex-decoding in driver. <perlinger at ntp.org>
++* [Bug 3084] update-leap mis-parses the leapfile name.  HStenn.
++* [Bug 3068] Linker warnings when building on Solaris. perlinger at ntp.org
++  - applied patch thanks to Andrew Stormont <andyjstormont at gmail.com>
++* [Bug 3067] Root distance calculation needs improvement.  HStenn.
++* [Bug 3066] NMEA clock ignores pps. perlinger at ntp.org
++  - PPS-HACK works again.
++* [Bug 3059] Potential buffer overrun from oversized hash <perlinger at ntp.org>
++  - applied patch by Brian Utterback <brian.utterback at oracle.com>
++* [Bug 3053] ntp_loopfilter.c frequency calc precedence error.  Sarah White.
++* [Bug 3050]  Fix for bug #2960 causes [...] spurious error message.
++  <perlinger at ntp.org>
++  - patches by Reinhard Max <max at suse.com> and Havard Eidnes <he at uninett.no>
++* [Bug 3047] Fix refclock_jjy C-DEX JST2000. abe at ntp.org
++  - Patch provided by Kuramatsu.
++* [Bug 3021] unity_fixture.c needs pragma weak <perlinger at ntp.org>
++  - removed unnecessary & harmful decls of 'setUp()' & 'tearDown()'
++* [Bug 3019] Windows: ERROR_HOST_UNREACHABLE block packet processing.
++  DMayer and JPerlinger.
++* [Bug 2998] sntp/tests/packetProcessing.c broken without openssl. JPerlinger
++* [Bug 2961] sntp/tests/packetProcessing.c assumes AUTOKEY.  HStenn.
++* [Bug 2959] refclock_jupiter: gps week correction <perlinger at ntp.org>
++  - fixed GPS week expansion to work based on build date. Special thanks
++    to Craig Leres for initial patch and testing.
++* [Bug 2951] ntpd tests fail: multiple definition of `send_via_ntp_signd'
++  - fixed Makefile.am <perlinger at ntp.org>
++* [Bug 2689] ATOM driver processes last PPS pulse at startup,
++             even if it is very old <perlinger at ntp.org>
++  - make sure PPS source is alive before processing samples
++  - improve stability close to the 500ms phase jump (phase gate)
++* Fix typos in include/ntp.h.
++* Shim X509_get_signature_nid() if needed.
++* git author attribution cleanup
++* bk ignore file cleanup
++* remove locks in Windows IO, use rpc-like thread synchronisation instead
++
++---
+ (4.2.8p8) 2016/06/02 Released by Harlan Stenn <stenn at ntp.org>
+ 
+ * [Sec 3042] Broadcast Interleave.  HStenn.
+@@ -19,7 +88,7 @@
+ * Fix typo in ntp-wait and plot_summary.  HStenn.
+ * Make sure we have an "author" file for git imports.  HStenn.
+ * Update the sntp problem tests for MacOS.  HStenn.
+-  
++
+ ---
+ (4.2.8p7) 2016/04/26 Released by Harlan Stenn <stenn at ntp.org>
+ 
+--- contrib/ntp/CommitLog.orig
++++ contrib/ntp/CommitLog
+@@ -1,3 +1,1866 @@
++ChangeSet at 1.3720, 2016-11-21 08:08:21-05:00, stenn at deacon.udel.edu
++  NTP_4_2_8P9
++  TAG: NTP_4_2_8P9
++
++  ChangeLog at 1.1852 +1 -0
++    NTP_4_2_8P9
++
++  ntpd/invoke-ntp.conf.texi at 1.203 +1 -1
++    NTP_4_2_8P9
++
++  ntpd/invoke-ntp.keys.texi at 1.192 +1 -1
++    NTP_4_2_8P9
++
++  ntpd/invoke-ntpd.texi at 1.508 +2 -2
++    NTP_4_2_8P9
++
++  ntpd/ntp.conf.5man at 1.237 +3 -3
++    NTP_4_2_8P9
++
++  ntpd/ntp.conf.5mdoc at 1.237 +2 -2
++    NTP_4_2_8P9
++
++  ntpd/ntp.conf.html at 1.187 +157 -154
++    NTP_4_2_8P9
++
++  ntpd/ntp.conf.man.in at 1.237 +3 -3
++    NTP_4_2_8P9
++
++  ntpd/ntp.conf.mdoc.in at 1.237 +2 -2
++    NTP_4_2_8P9
++
++  ntpd/ntp.keys.5man at 1.226 +2 -2
++    NTP_4_2_8P9
++
++  ntpd/ntp.keys.5mdoc at 1.226 +3 -3
++    NTP_4_2_8P9
++
++  ntpd/ntp.keys.html at 1.188 +21 -33
++    NTP_4_2_8P9
++
++  ntpd/ntp.keys.man.in at 1.226 +2 -2
++    NTP_4_2_8P9
++
++  ntpd/ntp.keys.mdoc.in at 1.226 +3 -3
++    NTP_4_2_8P9
++
++  ntpd/ntpd-opts.c at 1.530 +245 -245
++    NTP_4_2_8P9
++
++  ntpd/ntpd-opts.h at 1.529 +3 -3
++    NTP_4_2_8P9
++
++  ntpd/ntpd.1ntpdman at 1.337 +3 -3
++    NTP_4_2_8P9
++
++  ntpd/ntpd.1ntpdmdoc at 1.337 +2 -2
++    NTP_4_2_8P9
++
++  ntpd/ntpd.html at 1.181 +142 -186
++    NTP_4_2_8P9
++
++  ntpd/ntpd.man.in at 1.337 +3 -3
++    NTP_4_2_8P9
++
++  ntpd/ntpd.mdoc.in at 1.337 +2 -2
++    NTP_4_2_8P9
++
++  ntpdc/invoke-ntpdc.texi at 1.505 +2 -2
++    NTP_4_2_8P9
++
++  ntpdc/ntpdc-opts.c at 1.523 +106 -106
++    NTP_4_2_8P9
++
++  ntpdc/ntpdc-opts.h at 1.522 +3 -3
++    NTP_4_2_8P9
++
++  ntpdc/ntpdc.1ntpdcman at 1.336 +3 -3
++    NTP_4_2_8P9
++
++  ntpdc/ntpdc.1ntpdcmdoc at 1.336 +2 -2
++    NTP_4_2_8P9
++
++  ntpdc/ntpdc.html at 1.349 +75 -95
++    NTP_4_2_8P9
++
++  ntpdc/ntpdc.man.in at 1.336 +3 -3
++    NTP_4_2_8P9
++
++  ntpdc/ntpdc.mdoc.in at 1.336 +2 -2
++    NTP_4_2_8P9
++
++  ntpq/invoke-ntpq.texi at 1.513 +2 -2
++    NTP_4_2_8P9
++
++  ntpq/ntpq-opts.c at 1.530 +113 -113
++    NTP_4_2_8P9
++
++  ntpq/ntpq-opts.h at 1.528 +3 -3
++    NTP_4_2_8P9
++
++  ntpq/ntpq.1ntpqman at 1.341 +3 -3
++    NTP_4_2_8P9
++
++  ntpq/ntpq.1ntpqmdoc at 1.341 +2 -2
++    NTP_4_2_8P9
++
++  ntpq/ntpq.html at 1.178 +136 -160
++    NTP_4_2_8P9
++
++  ntpq/ntpq.man.in at 1.341 +3 -3
++    NTP_4_2_8P9
++
++  ntpq/ntpq.mdoc.in at 1.341 +2 -2
++    NTP_4_2_8P9
++
++  ntpsnmpd/invoke-ntpsnmpd.texi at 1.507 +2 -2
++    NTP_4_2_8P9
++
++  ntpsnmpd/ntpsnmpd-opts.c at 1.525 +67 -67
++    NTP_4_2_8P9
++
++  ntpsnmpd/ntpsnmpd-opts.h at 1.524 +3 -3
++    NTP_4_2_8P9
++
++  ntpsnmpd/ntpsnmpd.1ntpsnmpdman at 1.336 +3 -3
++    NTP_4_2_8P9
++
++  ntpsnmpd/ntpsnmpd.1ntpsnmpdmdoc at 1.336 +2 -2
++    NTP_4_2_8P9
++
++  ntpsnmpd/ntpsnmpd.html at 1.176 +10 -14
++    NTP_4_2_8P9
++
++  ntpsnmpd/ntpsnmpd.man.in at 1.336 +3 -3
++    NTP_4_2_8P9
++
++  ntpsnmpd/ntpsnmpd.mdoc.in at 1.336 +2 -2
++    NTP_4_2_8P9
++
++  packageinfo.sh at 1.532 +2 -2
++    NTP_4_2_8P9
++
++  scripts/calc_tickadj/calc_tickadj.1calc_tickadjman at 1.97 +3 -3
++    NTP_4_2_8P9
++
++  scripts/calc_tickadj/calc_tickadj.1calc_tickadjmdoc at 1.98 +2 -2
++    NTP_4_2_8P9
++
++  scripts/calc_tickadj/calc_tickadj.html at 1.99 +30 -42
++    NTP_4_2_8P9
++
++  scripts/calc_tickadj/calc_tickadj.man.in at 1.96 +3 -3
++    NTP_4_2_8P9
++
++  scripts/calc_tickadj/calc_tickadj.mdoc.in at 1.98 +2 -2
++    NTP_4_2_8P9
++
++  scripts/calc_tickadj/invoke-calc_tickadj.texi at 1.101 +1 -1
++    NTP_4_2_8P9
++
++  scripts/invoke-plot_summary.texi at 1.119 +2 -2
++    NTP_4_2_8P9
++
++  scripts/invoke-summary.texi at 1.118 +2 -2
++    NTP_4_2_8P9
++
++  scripts/ntp-wait/invoke-ntp-wait.texi at 1.328 +2 -2
++    NTP_4_2_8P9
++
++  scripts/ntp-wait/ntp-wait-opts at 1.64 +2 -2
++    NTP_4_2_8P9
++
++  scripts/ntp-wait/ntp-wait.1ntp-waitman at 1.325 +3 -3
++    NTP_4_2_8P9
++
++  scripts/ntp-wait/ntp-wait.1ntp-waitmdoc at 1.326 +2 -2
++    NTP_4_2_8P9
++
++  scripts/ntp-wait/ntp-wait.html at 1.345 +41 -59
++    NTP_4_2_8P9
++
++  scripts/ntp-wait/ntp-wait.man.in at 1.325 +3 -3
++    NTP_4_2_8P9
++
++  scripts/ntp-wait/ntp-wait.mdoc.in at 1.326 +2 -2
++    NTP_4_2_8P9
++
++  scripts/ntpsweep/invoke-ntpsweep.texi at 1.116 +2 -2
++    NTP_4_2_8P9
++
++  scripts/ntpsweep/ntpsweep-opts at 1.66 +2 -2
++    NTP_4_2_8P9
++
++  scripts/ntpsweep/ntpsweep.1ntpsweepman at 1.104 +3 -3
++    NTP_4_2_8P9
++
++  scripts/ntpsweep/ntpsweep.1ntpsweepmdoc at 1.104 +2 -2
++    NTP_4_2_8P9
++
++  scripts/ntpsweep/ntpsweep.html at 1.117 +46 -57
++    NTP_4_2_8P9
++
++  scripts/ntpsweep/ntpsweep.man.in at 1.104 +3 -3
++    NTP_4_2_8P9
++
++  scripts/ntpsweep/ntpsweep.mdoc.in at 1.105 +2 -2
++    NTP_4_2_8P9
++
++  scripts/ntptrace/invoke-ntptrace.texi at 1.117 +2 -2
++    NTP_4_2_8P9
++
++  scripts/ntptrace/ntptrace-opts at 1.66 +2 -2
++    NTP_4_2_8P9
++
++  scripts/ntptrace/ntptrace.1ntptraceman at 1.104 +3 -3
++    NTP_4_2_8P9
++
++  scripts/ntptrace/ntptrace.1ntptracemdoc at 1.105 +2 -2
++    NTP_4_2_8P9
++
++  scripts/ntptrace/ntptrace.html at 1.118 +38 -47
++    NTP_4_2_8P9
++
++  scripts/ntptrace/ntptrace.man.in at 1.104 +3 -3
++    NTP_4_2_8P9
++
++  scripts/ntptrace/ntptrace.mdoc.in at 1.106 +2 -2
++    NTP_4_2_8P9
++
++  scripts/plot_summary-opts at 1.67 +2 -2
++    NTP_4_2_8P9
++
++  scripts/plot_summary.1plot_summaryman at 1.117 +3 -3
++    NTP_4_2_8P9
++
++  scripts/plot_summary.1plot_summarymdoc at 1.117 +2 -2
++    NTP_4_2_8P9
++
++  scripts/plot_summary.html at 1.120 +40 -58
++    NTP_4_2_8P9
++
++  scripts/plot_summary.man.in at 1.117 +3 -3
++    NTP_4_2_8P9
++
++  scripts/plot_summary.mdoc.in at 1.117 +2 -2
++    NTP_4_2_8P9
++
++  scripts/summary-opts at 1.66 +2 -2
++    NTP_4_2_8P9
++
++  scripts/summary.1summaryman at 1.116 +3 -3
++    NTP_4_2_8P9
++
++  scripts/summary.1summarymdoc at 1.116 +2 -2
++    NTP_4_2_8P9
++
++  scripts/summary.html at 1.119 +37 -49
++    NTP_4_2_8P9
++
++  scripts/summary.man.in at 1.116 +3 -3
++    NTP_4_2_8P9
++
++  scripts/summary.mdoc.in at 1.116 +2 -2
++    NTP_4_2_8P9
++
++  scripts/update-leap/invoke-update-leap.texi at 1.17 +1 -1
++    NTP_4_2_8P9
++
++  scripts/update-leap/update-leap-opts at 1.17 +2 -2
++    NTP_4_2_8P9
++
++  scripts/update-leap/update-leap.1update-leapman at 1.17 +3 -3
++    NTP_4_2_8P9
++
++  scripts/update-leap/update-leap.1update-leapmdoc at 1.17 +2 -2
++    NTP_4_2_8P9
++
++  scripts/update-leap/update-leap.html at 1.17 +48 -72
++    NTP_4_2_8P9
++
++  scripts/update-leap/update-leap.man.in at 1.17 +3 -3
++    NTP_4_2_8P9
++
++  scripts/update-leap/update-leap.mdoc.in at 1.17 +2 -2
++    NTP_4_2_8P9
++
++  sntp/invoke-sntp.texi at 1.505 +2 -2
++    NTP_4_2_8P9
++
++  sntp/sntp-opts.c at 1.524 +158 -158
++    NTP_4_2_8P9
++
++  sntp/sntp-opts.h at 1.522 +3 -3
++    NTP_4_2_8P9
++
++  sntp/sntp.1sntpman at 1.340 +3 -3
++    NTP_4_2_8P9
++
++  sntp/sntp.1sntpmdoc at 1.340 +2 -2
++    NTP_4_2_8P9
++
++  sntp/sntp.html at 1.520 +111 -135
++    NTP_4_2_8P9
++
++  sntp/sntp.man.in at 1.340 +3 -3
++    NTP_4_2_8P9
++
++  sntp/sntp.mdoc.in at 1.340 +2 -2
++    NTP_4_2_8P9
++
++  util/invoke-ntp-keygen.texi at 1.508 +2 -2
++    NTP_4_2_8P9
++
++  util/ntp-keygen-opts.c at 1.526 +172 -172
++    NTP_4_2_8P9
++
++  util/ntp-keygen-opts.h at 1.524 +3 -3
++    NTP_4_2_8P9
++
++  util/ntp-keygen.1ntp-keygenman at 1.336 +3 -3
++    NTP_4_2_8P9
++
++  util/ntp-keygen.1ntp-keygenmdoc at 1.336 +2 -2
++    NTP_4_2_8P9
++
++  util/ntp-keygen.html at 1.182 +157 -216
++    NTP_4_2_8P9
++
++  util/ntp-keygen.man.in at 1.336 +3 -3
++    NTP_4_2_8P9
++
++  util/ntp-keygen.mdoc.in at 1.336 +2 -2
++    NTP_4_2_8P9
++
++ChangeSet at 1.3719, 2016-11-21 07:07:04-05:00, stenn at deacon.udel.edu
++  ntp-4.2.8p9
++
++  packageinfo.sh at 1.531 +1 -1
++    ntp-4.2.8p9
++
++ChangeSet at 1.3718, 2016-11-21 03:47:58+00:00, stenn at psp-deb1.ntp.org
++  NEWS updates, final p9 testing
++
++  NEWS at 1.203 +25 -17
++    NEWS updates, final p9 testing
++
++  packageinfo.sh at 1.530 +2 -2
++    NEWS updates, final p9 testing
++
++ChangeSet at 1.3717, 2016-11-18 10:33:02+00:00, stenn at psp-deb1.ntp.org
++  NEWS update for 3142
++
++  NEWS at 1.202 +2 -1
++    NEWS update for 3142
++
++ChangeSet at 1.3686.23.1, 2016-11-18 08:55:13+01:00, perlinger at ntp.org
++  [Bug 3142] bug in netmask prefix length detection
++
++  ChangeLog at 1.1834.23.1 +3 -0
++    [Bug 3142] bug in netmask prefix length detection
++
++  lib/isc/netaddr.c at 1.15 +0 -1
++    [Bug 3142] bug in netmask prefix length detection
++
++ChangeSet at 1.3715, 2016-11-16 21:25:49-08:00, harlan at fb-x86-a.pfcs.com
++  NEWS file update
++
++  NEWS at 1.201 +7 -22
++    NEWS file update
++
++ChangeSet at 1.3707.1.1, 2016-11-13 21:59:31-08:00, harlan at fb-x86-a.pfcs.com
++  cleanup
++
++  NEWS at 1.197.1.1 +201 -77
++    cleanup
++
++ChangeSet at 1.3713, 2016-11-13 21:56:18-08:00, harlan at hms-mbp11.pfcs.com
++  cleanip
++
++  ChangeLog at 1.1850 +2 -0
++    cleanip
++
++ChangeSet at 1.3712, 2016-11-13 02:43:02+00:00, stenn at psp-deb1.ntp.org
++  NEWS updates
++
++  NEWS at 1.199 +17 -0
++    NEWS updates
++
++ChangeSet at 1.3710, 2016-11-13 02:30:31+00:00, stenn at psp-deb1.ntp.org
++  NEWS cleanup
++
++  NEWS at 1.198 +2 -0
++    NEWS cleanup
++
++ChangeSet at 1.3707, 2016-11-12 17:36:54-08:00, harlan at fb-x86-a.pfcs.com
++  NEWS cleanup
++
++  NEWS at 1.197 +41 -6
++    NEWS cleanup
++
++ChangeSet at 1.3706, 2016-11-12 16:55:59-08:00, harlan at fb-x86-a.pfcs.com
++  [Bug 3067] Root distance calculation needs improvement.  HStenn
++
++  ChangeLog at 1.1846.1.2 +1 -0
++    [Bug 3067] Root distance calculation needs improvement.  HStenn
++
++  NEWS at 1.196 +1 -0
++    [Bug 3067] Root distance calculation needs improvement.  HStenn
++
++  ntpd/ntp_proto.c at 1.396 +16 -11
++    [Bug 3067] Root distance calculation needs improvement.  HStenn
++
++ChangeSet at 1.3705, 2016-11-12 15:57:34-08:00, harlan at fb-x86-a.pfcs.com
++  [Bug 3138] gpsdjson refclock should honor fudgetime1. stenn at ntp.org
++
++  ChangeLog at 1.1846.1.1 +1 -0
++    [Bug 3138] gpsdjson refclock should honor fudgetime1. stenn at ntp.org
++
++  NEWS at 1.195 +1 -0
++    [Bug 3138] gpsdjson refclock should honor fudgetime1. stenn at ntp.org
++
++  ntpd/refclock_gpsdjson.c at 1.25 +1 -1
++    [Bug 3138] gpsdjson refclock should honor fudgetime1. stenn at ntp.org
++
++ChangeSet at 1.3686.22.1, 2016-11-12 05:54:39+01:00, perlinger at ntp.org
++  [Bug 3129] Unknown hosts can put resolver thread into a hard loop
++
++  ChangeLog at 1.1834.22.1 +4 -0
++    [Bug 3129] Unknown hosts can put resolver thread into a hard loop
++
++  include/ntp_intres.h at 1.2 +6 -0
++    [Bug 3129] Unknown hosts can put resolver thread into a hard loop
++     - add flags and prototype for 'getaddrinfo_sometime_ex()'
++
++  libntp/ntp_intres.c at 1.101 +48 -14
++    [Bug 3129] Unknown hosts can put resolver thread into a hard loop
++     - implement 'getaddrinfo_sometime_ex()', support ignoring all errors
++
++  ntpd/ntp_config.c at 1.338.1.1 +11 -10
++    [Bug 3129] Unknown hosts can put resolver thread into a hard loop
++     - move decison about igoring DNS errors to resolver code
++
++ChangeSet at 1.3703.1.2, 2016-11-09 12:32:07+00:00, stenn at psp-deb1.ntp.org
++  [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ChangeLog at 1.1848 +1 -1
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  html/miscopt.html at 1.87 +4 -2
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  include/ntp.h at 1.223 +1 -0
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  include/ntpd.h at 1.194 +1 -0
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/complete.conf.in at 1.32 +1 -1
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/invoke-ntp.conf.texi at 1.202 +16 -1
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/keyword-gen-utd at 1.29 +1 -1
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/keyword-gen.c at 1.35 +1 -0
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/ntp.conf.5man at 1.236 +29 -8
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/ntp.conf.5mdoc at 1.236 +21 -2
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/ntp.conf.def at 1.25 +19 -0
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/ntp.conf.man.in at 1.236 +29 -8
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/ntp.conf.mdoc.in at 1.236 +21 -2
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/ntp_config.c at 1.339 +15 -0
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/ntp_keyword.h at 1.31 +1068 -1058
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/ntp_parser.c at 1.103 +1196 -1193
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/ntp_parser.h at 1.67 +373 -371
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/ntp_parser.y at 1.93 +3 -1
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++  ntpd/ntp_proto.c at 1.394.1.2 +43 -26
++    [Bug 3114] bcpollbstep, tweaks and cleanup
++
++ChangeSet at 1.3703, 2016-11-09 06:06:04+00:00, stenn at psp-deb1.ntp.org
++  typo
++
++  ChangeLog at 1.1846 +1 -1
++    typo
++
++ChangeSet at 1.3686.21.1, 2016-11-08 20:01:41+01:00, perlinger at ntp.org
++  [Bug 3089] Serial Parser does not work anymore for hopfser like device
++
++  ChangeLog at 1.1834.21.1 +4 -0
++    [Bug 3089] Serial Parser does not work anymore for hopfser like device
++
++  libparse/clk_hopf6021.c at 1.13 +43 -25
++    [Bug 3089] Serial Parser does not work anymore for hopfser like device
++     - simplified / refactored hex-decoding in driver.
++
++ChangeSet at 1.3698.2.1, 2016-11-03 17:02:24-07:00, harlan at max.pfcs.com
++  Added leap smear/root dispersion comment
++
++  ntpd/ntp_proto.c at 1.393.1.1 +4 -0
++    Added leap smear/root dispersion comment
++
++ChangeSet at 1.3699.1.2, 2016-10-31 10:56:33+00:00, stenn at psp-deb1.ntp.org
++  Add bug 3125 to the NEWS file
++
++  NEWS at 1.194 +2 -0
++    Add bug 3125 to the NEWS file
++
++ChangeSet at 1.3701, 2016-10-24 07:37:25+02:00, perlinger at ntp.org
++  [winio2 - unlocked]
++   - the great lock removal
++   - the great renaming
++
++  ChangeLog at 1.1844 +1 -0
++    [winio2 - unlocked] notes on changes
++
++  ntpd/ntp_refclock.c at 1.123 +1 -1
++    [winio2 - unlocked]
++     - whitespace at EOL
++
++  ports/winnt/include/ntp_iocpltypes.h at 1.3 +21 -24
++    [winio2 - unlocked]
++     - eliminate critical section, simplify API
++     - the great renaming
++
++  ports/winnt/ntpd/ntp_iocompletionport.c at 1.77 +331 -209
++    [winio2 - unlocked]
++     - the great lock removal
++     - handle context objects are only manipulated by IOCPL thread
++     - closing handles is done by main thread after informing IOCPL thread (RPC-style)
++     - the great renaming
++     - restructured UNIX line mode emulation
++
++  ports/winnt/ntpd/ntp_iocpltypes.c at 1.3 +31 -95
++    [winio2 - unlocked]
++     - eliminate critical section, simplify API
++     - the great renaming
++    
++
++ChangeSet at 1.3698.1.7, 2016-10-23 05:18:04+00:00, stenn at psp-deb1.ntp.org
++  ntp-4.2.8p9-PRE
++
++  ntpd/invoke-ntp.conf.texi at 1.201 +1 -1
++    ntp-4.2.8p9-PRE
++
++  ntpd/invoke-ntp.keys.texi at 1.191 +1 -1
++    ntp-4.2.8p9-PRE
++
++  ntpd/invoke-ntpd.texi at 1.507 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntp.conf.5man at 1.235 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntp.conf.5mdoc at 1.235 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntp.conf.html at 1.186 +104 -91
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntp.conf.man.in at 1.235 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntp.conf.mdoc.in at 1.235 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntp.keys.5man at 1.225 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntp.keys.5mdoc at 1.225 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntp.keys.html at 1.187 +29 -17
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntp.keys.man.in at 1.225 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntp.keys.mdoc.in at 1.225 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntpd-opts.c at 1.529 +245 -245
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntpd-opts.h at 1.528 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntpd.1ntpdman at 1.336 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntpd.1ntpdmdoc at 1.336 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntpd.html at 1.180 +146 -102
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntpd.man.in at 1.336 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpd/ntpd.mdoc.in at 1.336 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpdc/invoke-ntpdc.texi at 1.504 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpdc/ntpdc-opts.c at 1.522 +106 -106
++    ntp-4.2.8p9-PRE
++
++  ntpdc/ntpdc-opts.h at 1.521 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpdc/ntpdc.1ntpdcman at 1.335 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpdc/ntpdc.1ntpdcmdoc at 1.335 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpdc/ntpdc.html at 1.348 +77 -57
++    ntp-4.2.8p9-PRE
++
++  ntpdc/ntpdc.man.in at 1.335 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpdc/ntpdc.mdoc.in at 1.335 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpq/invoke-ntpq.texi at 1.512 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpq/ntpq-opts.c at 1.529 +113 -113
++    ntp-4.2.8p9-PRE
++
++  ntpq/ntpq-opts.h at 1.527 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpq/ntpq.1ntpqman at 1.340 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpq/ntpq.1ntpqmdoc at 1.340 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpq/ntpq.html at 1.177 +129 -105
++    ntp-4.2.8p9-PRE
++
++  ntpq/ntpq.man.in at 1.340 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpq/ntpq.mdoc.in at 1.340 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpsnmpd/invoke-ntpsnmpd.texi at 1.506 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpsnmpd/ntpsnmpd-opts.c at 1.524 +67 -67
++    ntp-4.2.8p9-PRE
++
++  ntpsnmpd/ntpsnmpd-opts.h at 1.523 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpsnmpd/ntpsnmpd.1ntpsnmpdman at 1.335 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpsnmpd/ntpsnmpd.1ntpsnmpdmdoc at 1.335 +2 -2
++    ntp-4.2.8p9-PRE
++
++  ntpsnmpd/ntpsnmpd.html at 1.175 +14 -10
++    ntp-4.2.8p9-PRE
++
++  ntpsnmpd/ntpsnmpd.man.in at 1.335 +3 -3
++    ntp-4.2.8p9-PRE
++
++  ntpsnmpd/ntpsnmpd.mdoc.in at 1.335 +2 -2
++    ntp-4.2.8p9-PRE
++
++  packageinfo.sh at 1.529 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/calc_tickadj/calc_tickadj.1calc_tickadjman at 1.96 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/calc_tickadj/calc_tickadj.1calc_tickadjmdoc at 1.97 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/calc_tickadj/calc_tickadj.html at 1.98 +34 -22
++    ntp-4.2.8p9-PRE
++
++  scripts/calc_tickadj/calc_tickadj.man.in at 1.95 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/calc_tickadj/calc_tickadj.mdoc.in at 1.97 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/calc_tickadj/invoke-calc_tickadj.texi at 1.100 +1 -1
++    ntp-4.2.8p9-PRE
++
++  scripts/invoke-plot_summary.texi at 1.118 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/invoke-summary.texi at 1.117 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/ntp-wait/invoke-ntp-wait.texi at 1.327 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/ntp-wait/ntp-wait-opts at 1.63 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/ntp-wait/ntp-wait.1ntp-waitman at 1.324 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/ntp-wait/ntp-wait.1ntp-waitmdoc at 1.325 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/ntp-wait/ntp-wait.html at 1.344 +49 -31
++    ntp-4.2.8p9-PRE
++
++  scripts/ntp-wait/ntp-wait.man.in at 1.324 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/ntp-wait/ntp-wait.mdoc.in at 1.325 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/ntpsweep/invoke-ntpsweep.texi at 1.115 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/ntpsweep/ntpsweep-opts at 1.65 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/ntpsweep/ntpsweep.1ntpsweepman at 1.103 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/ntpsweep/ntpsweep.1ntpsweepmdoc at 1.103 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/ntpsweep/ntpsweep.html at 1.116 +44 -33
++    ntp-4.2.8p9-PRE
++
++  scripts/ntpsweep/ntpsweep.man.in at 1.103 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/ntpsweep/ntpsweep.mdoc.in at 1.104 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/ntptrace/invoke-ntptrace.texi at 1.116 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/ntptrace/ntptrace-opts at 1.65 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/ntptrace/ntptrace.1ntptraceman at 1.103 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/ntptrace/ntptrace.1ntptracemdoc at 1.104 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/ntptrace/ntptrace.html at 1.117 +36 -27
++    ntp-4.2.8p9-PRE
++
++  scripts/ntptrace/ntptrace.man.in at 1.103 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/ntptrace/ntptrace.mdoc.in at 1.105 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/plot_summary-opts at 1.66 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/plot_summary.1plot_summaryman at 1.116 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/plot_summary.1plot_summarymdoc at 1.116 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/plot_summary.html at 1.119 +47 -29
++    ntp-4.2.8p9-PRE
++
++  scripts/plot_summary.man.in at 1.116 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/plot_summary.mdoc.in at 1.116 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/summary-opts at 1.65 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/summary.1summaryman at 1.115 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/summary.1summarymdoc at 1.115 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/summary.html at 1.118 +39 -27
++    ntp-4.2.8p9-PRE
++
++  scripts/summary.man.in at 1.115 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/summary.mdoc.in at 1.115 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/update-leap/invoke-update-leap.texi at 1.16 +1 -1
++    ntp-4.2.8p9-PRE
++
++  scripts/update-leap/update-leap-opts at 1.16 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/update-leap/update-leap.1update-leapman at 1.16 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/update-leap/update-leap.1update-leapmdoc at 1.16 +2 -2
++    ntp-4.2.8p9-PRE
++
++  scripts/update-leap/update-leap.html at 1.16 +59 -35
++    ntp-4.2.8p9-PRE
++
++  scripts/update-leap/update-leap.man.in at 1.16 +3 -3
++    ntp-4.2.8p9-PRE
++
++  scripts/update-leap/update-leap.mdoc.in at 1.16 +2 -2
++    ntp-4.2.8p9-PRE
++
++  sntp/invoke-sntp.texi at 1.504 +2 -2
++    ntp-4.2.8p9-PRE
++
++  sntp/sntp-opts.c at 1.523 +158 -158
++    ntp-4.2.8p9-PRE
++
++  sntp/sntp-opts.h at 1.521 +3 -3
++    ntp-4.2.8p9-PRE
++
++  sntp/sntp.1sntpman at 1.339 +3 -3
++    ntp-4.2.8p9-PRE
++
++  sntp/sntp.1sntpmdoc at 1.339 +2 -2
++    ntp-4.2.8p9-PRE
++
++  sntp/sntp.html at 1.519 +109 -85
++    ntp-4.2.8p9-PRE
++
++  sntp/sntp.man.in at 1.339 +3 -3
++    ntp-4.2.8p9-PRE

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-src-user mailing list