From owner-svn-src-stable-9@freebsd.org Sun Oct 25 21:48:47 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 35E6582F2; Sun, 25 Oct 2015 21:48:47 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EC2B9107F; Sun, 25 Oct 2015 21:48:46 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9PLmkIA002291; Sun, 25 Oct 2015 21:48:46 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9PLmk60002290; Sun, 25 Oct 2015 21:48:46 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510252148.t9PLmk60002290@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 25 Oct 2015 21:48:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289944 - stable/9/usr.bin/passwd X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Oct 2015 21:48:47 -0000 Author: ngie Date: Sun Oct 25 21:48:45 2015 New Revision: 289944 URL: https://svnweb.freebsd.org/changeset/base/289944 Log: MFC r243617 (to fix a longstanding bug): PR: 171779 r243617 (by pjd): Respect NO_FSCHG and don't set 'schg' flag on passwd/yppasswd is defined. Modified: stable/9/usr.bin/passwd/Makefile Directory Properties: stable/9/ (props changed) stable/9/usr.bin/ (props changed) stable/9/usr.bin/passwd/ (props changed) Modified: stable/9/usr.bin/passwd/Makefile ============================================================================== --- stable/9/usr.bin/passwd/Makefile Sun Oct 25 21:39:23 2015 (r289943) +++ stable/9/usr.bin/passwd/Makefile Sun Oct 25 21:48:45 2015 (r289944) @@ -19,7 +19,9 @@ beforeinstall: chflags noschg ${DESTDIR}${BINDIR}/$i || true .endfor +.if !defined(NO_FSCHG) afterinstall: -chflags schg ${DESTDIR}${BINDIR}/passwd +.endif .include From owner-svn-src-stable-9@freebsd.org Sun Oct 25 22:05:27 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86E14876D; Sun, 25 Oct 2015 22:05:27 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 394F41B31; Sun, 25 Oct 2015 22:05:27 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9PM5Q0e008048; Sun, 25 Oct 2015 22:05:26 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9PM5QYa008046; Sun, 25 Oct 2015 22:05:26 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510252205.t9PM5QYa008046@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 25 Oct 2015 22:05:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289946 - in stable/9: . etc/mtree X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Oct 2015 22:05:27 -0000 Author: ngie Date: Sun Oct 25 22:05:26 2015 New Revision: 289946 URL: https://svnweb.freebsd.org/changeset/base/289946 Log: MFstable/10 r286637 (made some minor adjustments due to other commits not MFCed): r286637 (by garga): MFC r257077: Cleanup empty directories PR: 167133 Approved by: loos Sponsored by: Netgate Modified: stable/9/ObsoleteFiles.inc stable/9/etc/mtree/BSD.usr.dist Directory Properties: stable/9/ (props changed) stable/9/etc/ (props changed) stable/9/etc/mtree/ (props changed) Modified: stable/9/ObsoleteFiles.inc ============================================================================== --- stable/9/ObsoleteFiles.inc Sun Oct 25 22:00:56 2015 (r289945) +++ stable/9/ObsoleteFiles.inc Sun Oct 25 22:05:26 2015 (r289946) @@ -38,6 +38,8 @@ # xargs -n1 | sort | uniq -d; # done +# 20131023: remove never used iscsi directory +OLD_DIRS+=usr/share/examples/iscsi # 20151023: unused sgsmsg utility is removed OLD_FILES+=usr/bin/sgsmsg # 20140922: sleepq_calc_signal_retval.9 and sleepq_catch_signals.9 removed @@ -2011,6 +2013,7 @@ OLD_FILES+=usr/sbin/zfs OLD_FILES+=usr/sbin/zpool # 20070423: rc.bluetooth (examples) removed OLD_FILES+=usr/share/examples/netgraph/bluetooth/rc.bluetooth +OLD_DIRS+=usr/share/examples/netgraph/bluetooth # 20070421: worm.4 removed OLD_FILES+=usr/share/man/man4/worm.4.gz # 20070417: trunk(4) renamed to lagg(4) Modified: stable/9/etc/mtree/BSD.usr.dist ============================================================================== --- stable/9/etc/mtree/BSD.usr.dist Sun Oct 25 22:00:56 2015 (r289945) +++ stable/9/etc/mtree/BSD.usr.dist Sun Oct 25 22:05:26 2015 (r289946) @@ -333,8 +333,6 @@ .. ipfw .. - iscsi - .. jails .. kld @@ -366,8 +364,6 @@ mdoc .. netgraph - bluetooth - .. .. nwclient .. From owner-svn-src-stable-9@freebsd.org Sun Oct 25 22:19:13 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 258088E79; Sun, 25 Oct 2015 22:19:13 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D87A21A05; Sun, 25 Oct 2015 22:19:12 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9PMJBZK011397; Sun, 25 Oct 2015 22:19:11 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9PMJBXP011396; Sun, 25 Oct 2015 22:19:11 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510252219.t9PMJBXP011396@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 25 Oct 2015 22:19:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289950 - stable/9/usr.sbin/syslogd X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Oct 2015 22:19:13 -0000 Author: ngie Date: Sun Oct 25 22:19:11 2015 New Revision: 289950 URL: https://svnweb.freebsd.org/changeset/base/289950 Log: MFstable/10 r289949: MFC r286304: Set f_file to -1/F_UNUSED when after closing when possible This will help ensure we don't trash file descriptors that get used later on in the daemon Found via internal Coverity scan Discussed with: cem, ed, markj Differential Revision: https://reviews.freebsd.org/D3081 Submitted by: Miles Ohlrich Sponsored by: EMC / Isilon Storage Division Modified: stable/9/usr.sbin/syslogd/syslogd.c Directory Properties: stable/9/ (props changed) stable/9/usr.sbin/ (props changed) stable/9/usr.sbin/syslogd/ (props changed) Modified: stable/9/usr.sbin/syslogd/syslogd.c ============================================================================== --- stable/9/usr.sbin/syslogd/syslogd.c Sun Oct 25 22:17:43 2015 (r289949) +++ stable/9/usr.sbin/syslogd/syslogd.c Sun Oct 25 22:19:11 2015 (r289950) @@ -338,6 +338,18 @@ static int waitdaemon(int, int, int); static void timedout(int); static void double_rbuf(int); +static void +close_filed(struct filed *f) +{ + + if (f == NULL || f->f_file == -1) + return; + + (void)close(f->f_file); + f->f_file = -1; + f->f_type = F_UNUSED; +} + int main(int argc, char *argv[]) { @@ -985,7 +997,8 @@ logmsg(int pri, const char *msg, const c (void)strlcpy(f->f_lasttime, timestamp, sizeof(f->f_lasttime)); fprintlog(f, flags, msg); - (void)close(f->f_file); + close(f->f_file); + f->f_file = -1; } (void)sigsetmask(omask); return; @@ -1272,8 +1285,7 @@ fprintlog(struct filed *f, int flags, co */ if (errno != ENOSPC) { int e = errno; - (void)close(f->f_file); - f->f_type = F_UNUSED; + close_filed(f); errno = e; logerror(f->f_un.f_fname); } @@ -1297,7 +1309,7 @@ fprintlog(struct filed *f, int flags, co } if (writev(f->f_file, iov, IOV_SIZE) < 0) { int e = errno; - (void)close(f->f_file); + close_filed(f); if (f->f_un.f_pipe.f_pid > 0) deadq_enter(f->f_un.f_pipe.f_pid, f->f_un.f_pipe.f_pname); @@ -1405,7 +1417,7 @@ reapchild(int signo __unused) for (f = Files; f; f = f->f_next) if (f->f_type == F_PIPE && f->f_un.f_pipe.f_pid == pid) { - (void)close(f->f_file); + close_filed(f); f->f_un.f_pipe.f_pid = 0; log_deadchild(pid, status, f->f_un.f_pipe.f_pname); @@ -1509,7 +1521,7 @@ die(int signo) if (f->f_prevcount) fprintlog(f, 0, (char *)NULL); if (f->f_type == F_PIPE && f->f_un.f_pipe.f_pid > 0) { - (void)close(f->f_file); + close_filed(f); f->f_un.f_pipe.f_pid = 0; } } @@ -1575,11 +1587,11 @@ init(int signo) case F_FORW: case F_CONSOLE: case F_TTY: - (void)close(f->f_file); + close_filed(f); break; case F_PIPE: if (f->f_un.f_pipe.f_pid > 0) { - (void)close(f->f_file); + close_filed(f); deadq_enter(f->f_un.f_pipe.f_pid, f->f_un.f_pipe.f_pname); } From owner-svn-src-stable-9@freebsd.org Sun Oct 25 22:33:06 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 72493A173EA; Sun, 25 Oct 2015 22:33:06 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2D50615FC; Sun, 25 Oct 2015 22:33:06 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9PMX5v5017237; Sun, 25 Oct 2015 22:33:05 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9PMX4dk017231; Sun, 25 Oct 2015 22:33:04 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510252233.t9PMX4dk017231@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 25 Oct 2015 22:33:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289955 - stable/9/tools/regression/p1003_1b X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Oct 2015 22:33:06 -0000 Author: ngie Date: Sun Oct 25 22:33:04 2015 New Revision: 289955 URL: https://svnweb.freebsd.org/changeset/base/289955 Log: MFstable/10 r289954: MFC r282072,r283018: r282072: - Fix compilation (MAP_INHERIT's dead) - Fix warnings - Use mkstemp instead of tmpnam r283018: Fix more warnings related to missing headers Modified: stable/9/tools/regression/p1003_1b/Makefile stable/9/tools/regression/p1003_1b/fifo.c stable/9/tools/regression/p1003_1b/main.c stable/9/tools/regression/p1003_1b/prutil.c stable/9/tools/regression/p1003_1b/sched.c stable/9/tools/regression/p1003_1b/yield.c Directory Properties: stable/9/ (props changed) stable/9/tools/ (props changed) stable/9/tools/regression/ (props changed) Modified: stable/9/tools/regression/p1003_1b/Makefile ============================================================================== --- stable/9/tools/regression/p1003_1b/Makefile Sun Oct 25 22:30:45 2015 (r289954) +++ stable/9/tools/regression/p1003_1b/Makefile Sun Oct 25 22:33:04 2015 (r289955) @@ -14,4 +14,5 @@ SRCS=\ NO_MAN= CFLAGS+=-DNO_MEMLOCK + .include Modified: stable/9/tools/regression/p1003_1b/fifo.c ============================================================================== --- stable/9/tools/regression/p1003_1b/fifo.c Sun Oct 25 22:30:45 2015 (r289954) +++ stable/9/tools/regression/p1003_1b/fifo.c Sun Oct 25 22:33:04 2015 (r289955) @@ -31,17 +31,17 @@ * * $FreeBSD$ */ -#include -#include -#include -#include -#include -#include #include #include #include +#include +#include +#include #include #include +#include +#include +#include volatile int ticked; #define CAN_USE_ALARMS @@ -109,7 +109,7 @@ int fifo(int argc, char *argv[]) fifo_param.sched_priority = 1; p = (long *)mmap(0, sizeof(*p), - PROT_READ|PROT_WRITE, MAP_ANON|MAP_SHARED|MAP_INHERIT, -1, 0); + PROT_READ|PROT_WRITE, MAP_ANON|MAP_SHARED, -1, 0); if (p == (long *)-1) err(errno, "mmap"); Modified: stable/9/tools/regression/p1003_1b/main.c ============================================================================== --- stable/9/tools/regression/p1003_1b/main.c Sun Oct 25 22:30:45 2015 (r289954) +++ stable/9/tools/regression/p1003_1b/main.c Sun Oct 25 22:33:04 2015 (r289955) @@ -1,5 +1,6 @@ /* $FreeBSD$ */ #include +#include int fifo(int argc, char *argv[]); int memlock(int argc, char *argv[]); Modified: stable/9/tools/regression/p1003_1b/prutil.c ============================================================================== --- stable/9/tools/regression/p1003_1b/prutil.c Sun Oct 25 22:30:45 2015 (r289954) +++ stable/9/tools/regression/p1003_1b/prutil.c Sun Oct 25 22:33:04 2015 (r289955) @@ -1,10 +1,11 @@ +#include #include -#include #include #include - -#include +#include #include +#include + #include "prutil.h" /* @@ -12,7 +13,7 @@ */ void quit(const char *text) { - err(errno, text); + err(errno, "%s", text); } char *sched_text(int scheduler) Modified: stable/9/tools/regression/p1003_1b/sched.c ============================================================================== --- stable/9/tools/regression/p1003_1b/sched.c Sun Oct 25 22:30:45 2015 (r289954) +++ stable/9/tools/regression/p1003_1b/sched.c Sun Oct 25 22:33:04 2015 (r289955) @@ -41,16 +41,17 @@ #define _POSIX_SOURCE #define _POSIX_C_SOURCE 199309L -#include -#include - -#include -#include +#include #include #include -#include - +#include #include +#include +#define __XSI_VISIBLE 1 +#include +#undef __XSI_VISIBLE +#include +#include #include "prutil.h" @@ -209,17 +210,14 @@ int sched(int ac, char *av[]) { -#define NAM "P1003_1b_schedXXXX" - char nam[L_tmpnam]; + char nam[] = "P1003_1b_schedXXXXXX"; int fd; pid_t p; pid_t *lastrun; - strcpy(nam, NAM); - if (tmpnam(nam) != nam) - q(__LINE__, errno, "tmpnam " NAM); - q(__LINE__, (fd = open(nam, O_RDWR|O_CREAT, 0666)), - "open " NAM); + fd = mkstemp(nam); + if (fd == -1) + q(__LINE__, errno, "mkstemp failed"); (void)unlink(nam); Modified: stable/9/tools/regression/p1003_1b/yield.c ============================================================================== --- stable/9/tools/regression/p1003_1b/yield.c Sun Oct 25 22:30:45 2015 (r289954) +++ stable/9/tools/regression/p1003_1b/yield.c Sun Oct 25 22:33:04 2015 (r289955) @@ -89,7 +89,7 @@ int yield(int argc, char *argv[]) n = nslaves = atoi(argv[1]); p = (int *)mmap(0, sizeof(int), - PROT_READ|PROT_WRITE, MAP_ANON|MAP_SHARED|MAP_INHERIT, -1, 0); + PROT_READ|PROT_WRITE, MAP_ANON|MAP_SHARED, -1, 0); if (p == (int *)-1) err(errno, "mmap"); From owner-svn-src-stable-9@freebsd.org Sun Oct 25 22:35:45 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B1DFA17593; Sun, 25 Oct 2015 22:35:45 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 06E091B30; Sun, 25 Oct 2015 22:35:44 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9PMZifI017446; Sun, 25 Oct 2015 22:35:44 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9PMZiFc017445; Sun, 25 Oct 2015 22:35:44 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510252235.t9PMZiFc017445@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 25 Oct 2015 22:35:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289957 - stable/9/cddl/lib X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Oct 2015 22:35:45 -0000 Author: ngie Date: Sun Oct 25 22:35:43 2015 New Revision: 289957 URL: https://svnweb.freebsd.org/changeset/base/289957 Log: MFstable/10 r289956: MFC r283144: Articulate dependencies for cddl/lib/libdtrace and cddl/lib/libzfs Parallelize the build in this subdirectory Sponsored by: EMC / Isilon Storage Division Modified: stable/9/cddl/lib/Makefile Directory Properties: stable/9/ (props changed) stable/9/cddl/ (props changed) stable/9/cddl/lib/ (props changed) Modified: stable/9/cddl/lib/Makefile ============================================================================== --- stable/9/cddl/lib/Makefile Sun Oct 25 22:34:49 2015 (r289956) +++ stable/9/cddl/lib/Makefile Sun Oct 25 22:35:43 2015 (r289957) @@ -26,4 +26,9 @@ _drti= drti _libdtrace= libdtrace .endif +SUBDIR_DEPEND_libdtrace= libctf +SUBDIR_DEPEND_libzfs= libavl libnvpair libumem libuutil libzfs_core + +SUBDIR_PARALLEL= + .include From owner-svn-src-stable-9@freebsd.org Sun Oct 25 22:57:07 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45EE4A17C28; Sun, 25 Oct 2015 22:57:07 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E7D971BA6; Sun, 25 Oct 2015 22:57:06 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9PMv5Ht023708; Sun, 25 Oct 2015 22:57:05 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9PMv5MN023705; Sun, 25 Oct 2015 22:57:05 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510252257.t9PMv5MN023705@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 25 Oct 2015 22:57:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289964 - in stable/9: . share/man/man9 X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Oct 2015 22:57:07 -0000 Author: ngie Date: Sun Oct 25 22:57:05 2015 New Revision: 289964 URL: https://svnweb.freebsd.org/changeset/base/289964 Log: MFstable/10 r289963: MFC r288295,r288298: r288295: Posthumously remove all references to MFREE(9) The macro was removed in r90227 Sponsored by: EMC / Isilon Storage Division r288298: Remove MLINKS to more non-existent mbuf(9) macros Sponsored by: EMC / Isilon Storage Division Modified: stable/9/ObsoleteFiles.inc (contents, props changed) stable/9/share/man/man9/Makefile stable/9/share/man/man9/mbuf.9 Directory Properties: stable/9/ (props changed) stable/9/share/ (props changed) stable/9/share/man/ (props changed) stable/9/share/man/man9/ (props changed) Modified: stable/9/ObsoleteFiles.inc ============================================================================== --- stable/9/ObsoleteFiles.inc Sun Oct 25 22:55:19 2015 (r289963) +++ stable/9/ObsoleteFiles.inc Sun Oct 25 22:57:05 2015 (r289964) @@ -38,6 +38,12 @@ # xargs -n1 | sort | uniq -d; # done +# 20151025: remove links to removed/unimplemented mbuf(9) macros +OLD_FILES+=usr/share/man/man9/MEXT_ADD_REF.9.gz +OLD_FILES+=usr/share/man/man9/MEXTFREE.9.gz +OLD_FILES+=usr/share/man/man9/MEXT_IS_REF.9.gz +OLD_FILES+=usr/share/man/man9/MEXT_REM_REF.9.gz +OLD_FILES+=usr/share/man/man9/MFREE.9.gz # 20131023: remove never used iscsi directory OLD_DIRS+=usr/share/examples/iscsi # 20151023: unused sgsmsg utility is removed Modified: stable/9/share/man/man9/Makefile ============================================================================== --- stable/9/share/man/man9/Makefile Sun Oct 25 22:55:19 2015 (r289963) +++ stable/9/share/man/man9/Makefile Sun Oct 25 22:57:05 2015 (r289964) @@ -866,12 +866,7 @@ MLINKS+=\ mbuf.9 m_dup.9 \ mbuf.9 m_dup_pkthdr.9 \ mbuf.9 MEXTADD.9 \ - mbuf.9 MEXT_ADD_REF.9 \ - mbuf.9 MEXTFREE.9 \ - mbuf.9 MEXT_IS_REF.9 \ - mbuf.9 MEXT_REM_REF.9 \ mbuf.9 m_fixhdr.9 \ - mbuf.9 MFREE.9 \ mbuf.9 m_free.9 \ mbuf.9 m_freem.9 \ mbuf.9 MGET.9 \ Modified: stable/9/share/man/man9/mbuf.9 ============================================================================== --- stable/9/share/man/man9/mbuf.9 Sun Oct 25 22:55:19 2015 (r289963) +++ stable/9/share/man/man9/mbuf.9 Sun Oct 25 22:57:05 2015 (r289964) @@ -51,8 +51,6 @@ .Fa "short flags" .Fa "int type" .Fc -.Fn MEXTFREE "struct mbuf *mbuf" -.Fn MFREE "struct mbuf *mbuf" "struct mbuf *successor" .\" .Ss Mbuf utility macros .Fn mtod "struct mbuf *mbuf" "type" From owner-svn-src-stable-9@freebsd.org Sun Oct 25 23:59:43 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F1CEA18917; Sun, 25 Oct 2015 23:59:43 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D50817FC; Sun, 25 Oct 2015 23:59:43 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9PNxgqI041446; Sun, 25 Oct 2015 23:59:42 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9PNxgsI041445; Sun, 25 Oct 2015 23:59:42 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510252359.t9PNxgsI041445@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 25 Oct 2015 23:59:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289968 - stable/9 X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Oct 2015 23:59:43 -0000 Author: ngie Date: Sun Oct 25 23:59:41 2015 New Revision: 289968 URL: https://svnweb.freebsd.org/changeset/base/289968 Log: MFstable/10 r276311: MFC r275867: Fix sporadic build failures due to race when running make installworld when strip gets replaced at install time by adding it to ITOOLS for the default usr.bin/xinstall STRIP_CMD This will fix the failure noted in this Jenkins build step: https://jenkins.freebsd.org/job/Build-UFS-image/688/ This will also fix the issue reported by alfred@ dealing with installing on targets that differ from build hosts (e.g. installing on i386/i386 when built on amd64/amd64) Sponsored by: EMC / Isilon Storage Division Modified: stable/9/Makefile.inc1 (contents, props changed) Directory Properties: stable/9/ (props changed) Modified: stable/9/Makefile.inc1 ============================================================================== --- stable/9/Makefile.inc1 Sun Oct 25 23:27:08 2015 (r289967) +++ stable/9/Makefile.inc1 Sun Oct 25 23:59:41 2015 (r289968) @@ -706,7 +706,7 @@ _nmtree_itools= nmtree ITOOLS= [ awk cap_mkdb cat chflags chmod chown \ date echo egrep find grep id install ${_install-info} \ ln lockf make mkdir mtree ${_nmtree_itools} mv pwd_mkdb \ - rm sed sh sysctl test true uname wc ${_zoneinfo} + rm sed sh strip sysctl test true uname wc ${_zoneinfo} # # distributeworld From owner-svn-src-stable-9@freebsd.org Mon Oct 26 00:07:12 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F328A18BF0; Mon, 26 Oct 2015 00:07:12 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 20D881E99; Mon, 26 Oct 2015 00:07:12 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9Q07BZq044450; Mon, 26 Oct 2015 00:07:11 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9Q07BJ8044449; Mon, 26 Oct 2015 00:07:11 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510260007.t9Q07BJ8044449@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Mon, 26 Oct 2015 00:07:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289971 - stable/9/tools/regression/lib/msun X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2015 00:07:12 -0000 Author: ngie Date: Mon Oct 26 00:07:11 2015 New Revision: 289971 URL: https://svnweb.freebsd.org/changeset/base/289971 Log: MFstable/10 r289970: MFC r289332: Fix test-fenv:test_dfl_env when run on some amd64 CPUs Compare the fields that the AMD [1] and Intel [2] specs say will be set once fnstenv returns. Not all amd64 capable processors zero out the env.__x87.__other field (example: AMD Opteron 6308). The AMD64/x64 specs aren't explicit on what the env.__x87.__other field will contain after fnstenv is executed, so the values in env.__x87.__other could be filled with arbitrary data depending on how the CPU-specific implementation of fnstenv. 1. http://support.amd.com/TechDocs/26569_APM_v5.pdf 2. http://www.intel.com/Assets/en_US/PDF/manual/253666.pdf Discussed with: kib, Anton Rang Reviewed by: Daniel O'Connor (earlier patch; pre-generalization) Sponsored by: EMC / Isilon Storage Division Reported by: Bill Morchin Modified: stable/9/tools/regression/lib/msun/test-fenv.c Directory Properties: stable/9/ (props changed) stable/9/tools/ (props changed) stable/9/tools/regression/ (props changed) Modified: stable/9/tools/regression/lib/msun/test-fenv.c ============================================================================== --- stable/9/tools/regression/lib/msun/test-fenv.c Mon Oct 26 00:06:04 2015 (r289970) +++ stable/9/tools/regression/lib/msun/test-fenv.c Mon Oct 26 00:07:11 2015 (r289971) @@ -133,8 +133,35 @@ test_dfl_env(void) fenv_t env; fegetenv(&env); + +#ifdef __amd64__ + /* + * Compare the fields that the AMD [1] and Intel [2] specs say will be + * set once fnstenv returns. + * + * Not all amd64 capable processors implement the fnstenv instruction + * by zero'ing out the env.__x87.__other field (example: AMD Opteron + * 6308). The AMD64/x64 specs aren't explicit on what the + * env.__x87.__other field will contain after fnstenv is executed, so + * the values in env.__x87.__other could be filled with arbitrary + * data depending on how the CPU implements fnstenv. + * + * 1. http://support.amd.com/TechDocs/26569_APM_v5.pdf + * 2. http://www.intel.com/Assets/en_US/PDF/manual/253666.pdf + */ + assert(memcmp(&env.__mxcsr, &FE_DFL_ENV->__mxcsr, + sizeof(env.__mxcsr)) == 0); + assert(memcmp(&env.__x87.__control, &FE_DFL_ENV->__x87.__control, + sizeof(env.__x87.__control)) == 0); + assert(memcmp(&env.__x87.__status, &FE_DFL_ENV->__x87.__status, + sizeof(env.__x87.__status)) == 0); + assert(memcmp(&env.__x87.__tag, &FE_DFL_ENV->__x87.__tag, + sizeof(env.__x87.__tag)) == 0); +#else assert(memcmp(&env, FE_DFL_ENV, sizeof(env)) == 0); #endif + +#endif assert(fetestexcept(FE_ALL_EXCEPT) == 0); } From owner-svn-src-stable-9@freebsd.org Mon Oct 26 00:09:32 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 55D80A18D19; Mon, 26 Oct 2015 00:09:32 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 216D21184; Mon, 26 Oct 2015 00:09:32 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9Q09VWv044661; Mon, 26 Oct 2015 00:09:31 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9Q09V3X044660; Mon, 26 Oct 2015 00:09:31 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510260009.t9Q09V3X044660@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Mon, 26 Oct 2015 00:09:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289973 - stable/9/lib/libcam X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2015 00:09:32 -0000 Author: ngie Date: Mon Oct 26 00:09:30 2015 New Revision: 289973 URL: https://svnweb.freebsd.org/changeset/base/289973 Log: MFstable/10 r289972: MFC r289450: Set dev->fd to -1 when calling cam_close_spec_device with a valid dev->fd descriptor to avoid trashing valid file descriptors that access dev->fd at a later point in time PR: 192671 Submitted by: Scott Ferris Sponsored by: EMC / Isilon Storage Division Modified: stable/9/lib/libcam/camlib.c Directory Properties: stable/9/ (props changed) stable/9/lib/ (props changed) stable/9/lib/libcam/ (props changed) Modified: stable/9/lib/libcam/camlib.c ============================================================================== --- stable/9/lib/libcam/camlib.c Mon Oct 26 00:08:40 2015 (r289972) +++ stable/9/lib/libcam/camlib.c Mon Oct 26 00:09:30 2015 (r289973) @@ -675,8 +675,10 @@ cam_close_spec_device(struct cam_device if (dev == NULL) return; - if (dev->fd >= 0) + if (dev->fd >= 0) { close(dev->fd); + dev->fd = -1; + } } char * From owner-svn-src-stable-9@freebsd.org Mon Oct 26 00:12:02 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5EF36A18F26; Mon, 26 Oct 2015 00:12:02 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 298C5175C; Mon, 26 Oct 2015 00:12:02 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9Q0C191044930; Mon, 26 Oct 2015 00:12:01 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9Q0C1h6044929; Mon, 26 Oct 2015 00:12:01 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510260012.t9Q0C1h6044929@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Mon, 26 Oct 2015 00:12:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289975 - stable/9/share/zoneinfo X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2015 00:12:02 -0000 Author: ngie Date: Mon Oct 26 00:12:00 2015 New Revision: 289975 URL: https://svnweb.freebsd.org/changeset/base/289975 Log: MFstable/10 r289974: MFC r289451: Install share/zoneinfo in a deterministic way by sorting the results from find This helps produce deterministic METALOG output PR: 200674 Submitted by: Fabian Keil Reviewed by: emaste Obtained from: ElectroBSD Modified: stable/9/share/zoneinfo/Makefile Directory Properties: stable/9/ (props changed) stable/9/share/ (props changed) stable/9/share/zoneinfo/ (props changed) Modified: stable/9/share/zoneinfo/Makefile ============================================================================== --- stable/9/share/zoneinfo/Makefile Mon Oct 26 00:11:07 2015 (r289974) +++ stable/9/share/zoneinfo/Makefile Mon Oct 26 00:12:00 2015 (r289975) @@ -79,7 +79,7 @@ zoneinfo: yearistype ${TDATA} beforeinstall: cd ${TZBUILDDIR} && \ - find * -type f -print -exec ${INSTALL} \ + find -s * -type f -print -exec ${INSTALL} \ -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ \{} ${DESTDIR}/usr/share/zoneinfo/\{} \; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ From owner-svn-src-stable-9@freebsd.org Mon Oct 26 00:15:03 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B1D6CA18FF6; Mon, 26 Oct 2015 00:15:03 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7FD761A82; Mon, 26 Oct 2015 00:15:03 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9Q0F2Fa047678; Mon, 26 Oct 2015 00:15:02 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9Q0F2aX047677; Mon, 26 Oct 2015 00:15:02 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510260015.t9Q0F2aX047677@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Mon, 26 Oct 2015 00:15:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289977 - stable/9/sys/modules/netgraph X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2015 00:15:03 -0000 Author: ngie Date: Mon Oct 26 00:15:02 2015 New Revision: 289977 URL: https://svnweb.freebsd.org/changeset/base/289977 Log: MFstable/10 r289976: MFC r288304: Enable parallel subdirectory building with sys/modules/netgraph Modified: stable/9/sys/modules/netgraph/Makefile Directory Properties: stable/9/ (props changed) stable/9/sys/ (props changed) stable/9/sys/modules/ (props changed) Modified: stable/9/sys/modules/netgraph/Makefile ============================================================================== --- stable/9/sys/modules/netgraph/Makefile Mon Oct 26 00:13:49 2015 (r289976) +++ stable/9/sys/modules/netgraph/Makefile Mon Oct 26 00:15:02 2015 (r289977) @@ -62,4 +62,6 @@ _bluetooth= bluetooth _mppc= mppc .endif +SUBDIR_PARALLEL= + .include From owner-svn-src-stable-9@freebsd.org Mon Oct 26 03:48:17 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A9ADD8B89; Mon, 26 Oct 2015 03:48:17 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7469D1CCC; Mon, 26 Oct 2015 03:48:17 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9Q3mGBo008976; Mon, 26 Oct 2015 03:48:16 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9Q3mE2o008960; Mon, 26 Oct 2015 03:48:14 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510260348.t9Q3mE2o008960@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Mon, 26 Oct 2015 03:48:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289987 - stable/9/sbin/ifconfig X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2015 03:48:17 -0000 Author: ngie Date: Mon Oct 26 03:48:14 2015 New Revision: 289987 URL: https://svnweb.freebsd.org/changeset/base/289987 Log: MFstable/10 r289986: MFC r288305: Replace N #defines with nitems to simplify ifconfig code slightly Modified: stable/9/sbin/ifconfig/af_atalk.c stable/9/sbin/ifconfig/af_inet6.c stable/9/sbin/ifconfig/ifbridge.c stable/9/sbin/ifconfig/ifcarp.c stable/9/sbin/ifconfig/ifclone.c stable/9/sbin/ifconfig/ifconfig.c stable/9/sbin/ifconfig/iffib.c stable/9/sbin/ifconfig/ifgif.c stable/9/sbin/ifconfig/ifgre.c stable/9/sbin/ifconfig/ifgroup.c stable/9/sbin/ifconfig/ifieee80211.c stable/9/sbin/ifconfig/iflagg.c stable/9/sbin/ifconfig/ifmac.c stable/9/sbin/ifconfig/ifmedia.c stable/9/sbin/ifconfig/ifpfsync.c stable/9/sbin/ifconfig/ifvlan.c Directory Properties: stable/9/ (props changed) stable/9/sbin/ (props changed) stable/9/sbin/ifconfig/ (props changed) Modified: stable/9/sbin/ifconfig/af_atalk.c ============================================================================== --- stable/9/sbin/ifconfig/af_atalk.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/af_atalk.c Mon Oct 26 03:48:14 2015 (r289987) @@ -32,7 +32,7 @@ static const char rcsid[] = "$FreeBSD$"; #endif /* not lint */ -#include +#include #include #include #include @@ -172,11 +172,9 @@ static struct afswtch af_atalk = { static __constructor void atalk_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) size_t i; - for (i = 0; i < N(atalk_cmds); i++) + for (i = 0; i < nitems(atalk_cmds); i++) cmd_register(&atalk_cmds[i]); af_register(&af_atalk); -#undef N } Modified: stable/9/sbin/ifconfig/af_inet6.c ============================================================================== --- stable/9/sbin/ifconfig/af_inet6.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/af_inet6.c Mon Oct 26 03:48:14 2015 (r289987) @@ -546,7 +546,6 @@ static struct option in6_Lopt = { .opt = static __constructor void inet6_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) size_t i; #ifndef RESCUE @@ -554,9 +553,8 @@ inet6_ctor(void) return; #endif - for (i = 0; i < N(inet6_cmds); i++) + for (i = 0; i < nitems(inet6_cmds); i++) cmd_register(&inet6_cmds[i]); af_register(&af_inet6); opt_register(&in6_Lopt); -#undef N } Modified: stable/9/sbin/ifconfig/ifbridge.c ============================================================================== --- stable/9/sbin/ifconfig/ifbridge.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/ifbridge.c Mon Oct 26 03:48:14 2015 (r289987) @@ -749,11 +749,9 @@ static struct afswtch af_bridge = { static __constructor void bridge_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) int i; - for (i = 0; i < N(bridge_cmds); i++) + for (i = 0; i < nitems(bridge_cmds); i++) cmd_register(&bridge_cmds[i]); af_register(&af_bridge); -#undef N } Modified: stable/9/sbin/ifconfig/ifcarp.c ============================================================================== --- stable/9/sbin/ifconfig/ifcarp.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/ifcarp.c Mon Oct 26 03:48:14 2015 (r289987) @@ -214,11 +214,9 @@ static struct afswtch af_carp = { static __constructor void carp_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) int i; - for (i = 0; i < N(carp_cmds); i++) + for (i = 0; i < nitems(carp_cmds); i++) cmd_register(&carp_cmds[i]); af_register(&af_carp); -#undef N } Modified: stable/9/sbin/ifconfig/ifclone.c ============================================================================== --- stable/9/sbin/ifconfig/ifclone.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/ifclone.c Mon Oct 26 03:48:14 2015 (r289987) @@ -32,9 +32,9 @@ static const char rcsid[] = "$FreeBSD$"; #endif /* not lint */ -#include -#include +#include #include +#include #include #include @@ -184,11 +184,9 @@ static struct option clone_Copt = { .opt static __constructor void clone_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) size_t i; - for (i = 0; i < N(clone_cmds); i++) + for (i = 0; i < nitems(clone_cmds); i++) cmd_register(&clone_cmds[i]); opt_register(&clone_Copt); -#undef N } Modified: stable/9/sbin/ifconfig/ifconfig.c ============================================================================== --- stable/9/sbin/ifconfig/ifconfig.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/ifconfig.c Mon Oct 26 03:48:14 2015 (r289987) @@ -43,10 +43,10 @@ static const char rcsid[] = #include #include -#include -#include #include #include +#include +#include #include #include @@ -431,7 +431,6 @@ cmd_register(struct cmd *p) static const struct cmd * cmd_lookup(const char *name, int iscreate) { -#define N(a) (sizeof(a)/sizeof(a[0])) const struct cmd *p; for (p = cmds; p != NULL; p = p->c_next) @@ -445,7 +444,6 @@ cmd_lookup(const char *name, int iscreat } } return NULL; -#undef N } struct callback { @@ -1210,10 +1208,8 @@ static struct cmd basic_cmds[] = { static __constructor void ifconfig_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) size_t i; - for (i = 0; i < N(basic_cmds); i++) + for (i = 0; i < nitems(basic_cmds); i++) cmd_register(&basic_cmds[i]); -#undef N } Modified: stable/9/sbin/ifconfig/iffib.c ============================================================================== --- stable/9/sbin/ifconfig/iffib.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/iffib.c Mon Oct 26 03:48:14 2015 (r289987) @@ -93,11 +93,9 @@ static struct afswtch af_fib = { static __constructor void fib_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) size_t i; - for (i = 0; i < N(fib_cmds); i++) + for (i = 0; i < nitems(fib_cmds); i++) cmd_register(&fib_cmds[i]); af_register(&af_fib); -#undef N } Modified: stable/9/sbin/ifconfig/ifgif.c ============================================================================== --- stable/9/sbin/ifconfig/ifgif.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/ifgif.c Mon Oct 26 03:48:14 2015 (r289987) @@ -108,11 +108,9 @@ static struct afswtch af_gif = { static __constructor void gif_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) size_t i; - for (i = 0; i < N(gif_cmds); i++) + for (i = 0; i < nitems(gif_cmds); i++) cmd_register(&gif_cmds[i]); af_register(&af_gif); -#undef N } Modified: stable/9/sbin/ifconfig/ifgre.c ============================================================================== --- stable/9/sbin/ifconfig/ifgre.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/ifgre.c Mon Oct 26 03:48:14 2015 (r289987) @@ -88,11 +88,9 @@ static struct afswtch af_gre = { static __constructor void gre_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) size_t i; - for (i = 0; i < N(gre_cmds); i++) + for (i = 0; i < nitems(gre_cmds); i++) cmd_register(&gre_cmds[i]); af_register(&af_gre); -#undef N } Modified: stable/9/sbin/ifconfig/ifgroup.c ============================================================================== --- stable/9/sbin/ifconfig/ifgroup.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/ifgroup.c Mon Oct 26 03:48:14 2015 (r289987) @@ -28,7 +28,7 @@ static const char rcsid[] = "$FreeBSD$"; #endif /* not lint */ -#include +#include #include #include #include @@ -175,12 +175,10 @@ static struct option group_gopt = { "g:" static __constructor void group_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) int i; - for (i = 0; i < N(group_cmds); i++) + for (i = 0; i < nitems(group_cmds); i++) cmd_register(&group_cmds[i]); af_register(&af_group); opt_register(&group_gopt); -#undef N } Modified: stable/9/sbin/ifconfig/ifieee80211.c ============================================================================== --- stable/9/sbin/ifconfig/ifieee80211.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/ifieee80211.c Mon Oct 26 03:48:14 2015 (r289987) @@ -2820,7 +2820,6 @@ printrsnie(const char *tag, const u_int8 static void printwpsie(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen) { -#define N(a) (sizeof(a) / sizeof(a[0])) u_int8_t len = ie[1]; printf("%s", tag); @@ -2861,7 +2860,7 @@ printwpsie(const char *tag, const u_int8 break; case IEEE80211_WPS_DEV_PASS_ID: n = LE_READ_2(ie); - if (n < N(dev_pass_id)) + if (n < nitems(dev_pass_id)) printf(" dpi:%s", dev_pass_id[n]); break; case IEEE80211_WPS_UUID_E: @@ -2875,7 +2874,6 @@ printwpsie(const char *tag, const u_int8 } printf(">"); } -#undef N } static void @@ -3382,7 +3380,6 @@ list_stations(int s) static const char * mesh_linkstate_string(uint8_t state) { -#define N(a) (sizeof(a) / sizeof(a[0])) static const char *state_names[] = { [0] = "IDLE", [1] = "OPEN-TX", @@ -3392,13 +3389,12 @@ mesh_linkstate_string(uint8_t state) [5] = "HOLDING", }; - if (state >= N(state_names)) { + if (state >= nitems(state_names)) { static char buf[10]; snprintf(buf, sizeof(buf), "#%u", state); return buf; } else return state_names[state]; -#undef N } static const char * @@ -5266,12 +5262,10 @@ static struct afswtch af_ieee80211 = { static __constructor void ieee80211_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) int i; - for (i = 0; i < N(ieee80211_cmds); i++) + for (i = 0; i < nitems(ieee80211_cmds); i++) cmd_register(&ieee80211_cmds[i]); af_register(&af_ieee80211); clone_setdefcallback("wlan", wlan_create); -#undef N } Modified: stable/9/sbin/ifconfig/iflagg.c ============================================================================== --- stable/9/sbin/ifconfig/iflagg.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/iflagg.c Mon Oct 26 03:48:14 2015 (r289987) @@ -236,11 +236,9 @@ static struct afswtch af_lagg = { static __constructor void lagg_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) int i; - for (i = 0; i < N(lagg_cmds); i++) + for (i = 0; i < nitems(lagg_cmds); i++) cmd_register(&lagg_cmds[i]); af_register(&af_lagg); -#undef N } Modified: stable/9/sbin/ifconfig/ifmac.c ============================================================================== --- stable/9/sbin/ifconfig/ifmac.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/ifmac.c Mon Oct 26 03:48:14 2015 (r289987) @@ -111,11 +111,9 @@ static struct afswtch af_mac = { static __constructor void mac_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) size_t i; - for (i = 0; i < N(mac_cmds); i++) + for (i = 0; i < nitems(mac_cmds); i++) cmd_register(&mac_cmds[i]); af_register(&af_mac); -#undef N } Modified: stable/9/sbin/ifconfig/ifmedia.c ============================================================================== --- stable/9/sbin/ifconfig/ifmedia.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/ifmedia.c Mon Oct 26 03:48:14 2015 (r289987) @@ -825,11 +825,9 @@ static struct afswtch af_media = { static __constructor void ifmedia_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) size_t i; - for (i = 0; i < N(media_cmds); i++) + for (i = 0; i < nitems(media_cmds); i++) cmd_register(&media_cmds[i]); af_register(&af_media); -#undef N } Modified: stable/9/sbin/ifconfig/ifpfsync.c ============================================================================== --- stable/9/sbin/ifconfig/ifpfsync.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/ifpfsync.c Mon Oct 26 03:48:14 2015 (r289987) @@ -26,7 +26,7 @@ * $FreeBSD$ */ -#include +#include #include #include @@ -205,11 +205,9 @@ static struct afswtch af_pfsync = { static __constructor void pfsync_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) int i; - for (i = 0; i < N(pfsync_cmds); i++) + for (i = 0; i < nitems(pfsync_cmds); i++) cmd_register(&pfsync_cmds[i]); af_register(&af_pfsync); -#undef N } Modified: stable/9/sbin/ifconfig/ifvlan.c ============================================================================== --- stable/9/sbin/ifconfig/ifvlan.c Mon Oct 26 03:43:28 2015 (r289986) +++ stable/9/sbin/ifconfig/ifvlan.c Mon Oct 26 03:48:14 2015 (r289987) @@ -195,13 +195,11 @@ static struct afswtch af_vlan = { static __constructor void vlan_ctor(void) { -#define N(a) (sizeof(a) / sizeof(a[0])) size_t i; - for (i = 0; i < N(vlan_cmds); i++) + for (i = 0; i < nitems(vlan_cmds); i++) cmd_register(&vlan_cmds[i]); af_register(&af_vlan); callback_register(vlan_cb, NULL); clone_setdefcallback("vlan", vlan_create); -#undef N } From owner-svn-src-stable-9@freebsd.org Mon Oct 26 03:55:14 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D33F08E74; Mon, 26 Oct 2015 03:55:14 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F41B12FD; Mon, 26 Oct 2015 03:55:14 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9Q3tDns011977; Mon, 26 Oct 2015 03:55:13 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9Q3tDDQ011976; Mon, 26 Oct 2015 03:55:13 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510260355.t9Q3tDDQ011976@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Mon, 26 Oct 2015 03:55:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289990 - stable/9/usr.sbin/makefs X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2015 03:55:14 -0000 Author: ngie Date: Mon Oct 26 03:55:13 2015 New Revision: 289990 URL: https://svnweb.freebsd.org/changeset/base/289990 Log: MFstable/10 r289989: MFC r289601: Don't check if `val` is NULL before calling free; free(3) already handles this PR: 203649 Submitted by: Thomas Schmitt Coverity CID: 1305659 Sponsored by: EMC / Isilon Storage Division Modified: stable/9/usr.sbin/makefs/cd9660.c Directory Properties: stable/9/ (props changed) stable/9/usr.sbin/ (props changed) stable/9/usr.sbin/makefs/ (props changed) Modified: stable/9/usr.sbin/makefs/cd9660.c ============================================================================== --- stable/9/usr.sbin/makefs/cd9660.c Mon Oct 26 03:53:48 2015 (r289989) +++ stable/9/usr.sbin/makefs/cd9660.c Mon Oct 26 03:55:13 2015 (r289990) @@ -428,8 +428,7 @@ cd9660_parse_opts(const char *option, fs rv = set_option(cd9660_options, var, val); } - if (var) - free(var); + free(var); return (rv); } From owner-svn-src-stable-9@freebsd.org Mon Oct 26 07:19:04 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66528A1CFD2; Mon, 26 Oct 2015 07:19:04 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C7E71643; Mon, 26 Oct 2015 07:19:04 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9Q7J3eQ070735; Mon, 26 Oct 2015 07:19:03 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9Q7J3sk070734; Mon, 26 Oct 2015 07:19:03 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510260719.t9Q7J3sk070734@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Mon, 26 Oct 2015 07:19:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289992 - stable/9/tools/build/mk X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2015 07:19:04 -0000 Author: ngie Date: Mon Oct 26 07:19:03 2015 New Revision: 289992 URL: https://svnweb.freebsd.org/changeset/base/289992 Log: MFstable/10 r286636: r286636 (by garga): MFC 256710: Add lot of missed files and dirs Approved by: loos Sponsored by: Netgate Modified: stable/9/tools/build/mk/OptionalObsoleteFiles.inc Directory Properties: stable/9/ (props changed) stable/9/tools/ (props changed) stable/9/tools/build/ (props changed) Modified: stable/9/tools/build/mk/OptionalObsoleteFiles.inc ============================================================================== --- stable/9/tools/build/mk/OptionalObsoleteFiles.inc Mon Oct 26 04:11:33 2015 (r289991) +++ stable/9/tools/build/mk/OptionalObsoleteFiles.inc Mon Oct 26 07:19:03 2015 (r289992) @@ -84,6 +84,7 @@ OLD_FILES+=usr/include/netnatm/addr.h OLD_FILES+=usr/include/netnatm/api/atmapi.h OLD_FILES+=usr/include/netnatm/api/ccatm.h OLD_FILES+=usr/include/netnatm/api/unisap.h +OLD_DIRS+=usr/include/netnatm/api OLD_FILES+=usr/include/netnatm/msg/uni_config.h OLD_FILES+=usr/include/netnatm/msg/uni_hdr.h OLD_FILES+=usr/include/netnatm/msg/uni_ie.h @@ -91,13 +92,16 @@ OLD_FILES+=usr/include/netnatm/msg/uni_m OLD_FILES+=usr/include/netnatm/msg/unimsglib.h OLD_FILES+=usr/include/netnatm/msg/uniprint.h OLD_FILES+=usr/include/netnatm/msg/unistruct.h +OLD_DIRS+=usr/include/netnatm/msg OLD_FILES+=usr/include/netnatm/saal/sscfu.h OLD_FILES+=usr/include/netnatm/saal/sscfudef.h OLD_FILES+=usr/include/netnatm/saal/sscop.h OLD_FILES+=usr/include/netnatm/saal/sscopdef.h +OLD_DIRS+=usr/include/netnatm/saal OLD_FILES+=usr/include/netnatm/sig/uni.h OLD_FILES+=usr/include/netnatm/sig/unidef.h OLD_FILES+=usr/include/netnatm/sig/unisig.h +OLD_DIRS+=usr/include/netnatm/sig OLD_FILES+=usr/include/netnatm/unimsg.h OLD_FILES+=usr/lib/libngatm.a OLD_FILES+=usr/lib/libngatm.so @@ -113,6 +117,7 @@ OLD_FILES+=usr/lib32/libngatm_p.a .endif OLD_FILES+=usr/share/doc/atm/atmconfig.help OLD_FILES+=usr/share/doc/atm/atmconfig_device.help +OLD_DIRS+=usr/share/doc/atm OLD_FILES+=usr/share/man/man1/sscop.1.gz OLD_FILES+=usr/share/man/man3/libngatm.3.gz OLD_FILES+=usr/share/man/man3/snmp_atm.3.gz @@ -607,6 +612,7 @@ OLD_FILES+=usr/bin/calendar OLD_FILES+=usr/share/calendar/calendar.all OLD_FILES+=usr/share/calendar/calendar.australia OLD_FILES+=usr/share/calendar/calendar.birthday +OLD_FILES+=usr/share/calendar/calendar.brazilian OLD_FILES+=usr/share/calendar/calendar.christian OLD_FILES+=usr/share/calendar/calendar.computer OLD_FILES+=usr/share/calendar/calendar.croatian @@ -626,8 +632,8 @@ OLD_FILES+=usr/share/calendar/calendar.s OLD_FILES+=usr/share/calendar/calendar.ukrainian OLD_FILES+=usr/share/calendar/calendar.usholiday OLD_FILES+=usr/share/calendar/calendar.world -OLD_DIRS+=usr/share/calendar/de_AT.ISO_8859-15 OLD_FILES+=usr/share/calendar/de_AT.ISO_8859-15/calendar.feiertag +OLD_DIRS+=usr/share/calendar/de_AT.ISO_8859-15 OLD_FILES+=usr/share/calendar/de_DE.ISO8859-1/calendar.all OLD_FILES+=usr/share/calendar/de_DE.ISO8859-1/calendar.feiertag OLD_FILES+=usr/share/calendar/de_DE.ISO8859-1/calendar.geschichte @@ -635,18 +641,32 @@ OLD_FILES+=usr/share/calendar/de_DE.ISO8 OLD_FILES+=usr/share/calendar/de_DE.ISO8859-1/calendar.literatur OLD_FILES+=usr/share/calendar/de_DE.ISO8859-1/calendar.musik OLD_FILES+=usr/share/calendar/de_DE.ISO8859-1/calendar.wissenschaft +OLD_DIRS+=usr/share/calendar/de_DE.ISO8859-1 OLD_FILES+=usr/share/calendar/de_DE.ISO8859-15 OLD_FILES+=usr/share/calendar/fr_FR.ISO8859-1/calendar.all OLD_FILES+=usr/share/calendar/fr_FR.ISO8859-1/calendar.fetes OLD_FILES+=usr/share/calendar/fr_FR.ISO8859-1/calendar.french OLD_FILES+=usr/share/calendar/fr_FR.ISO8859-1/calendar.jferies OLD_FILES+=usr/share/calendar/fr_FR.ISO8859-1/calendar.proverbes +OLD_DIRS+=usr/share/calendar/fr_FR.ISO8859-1 OLD_FILES+=usr/share/calendar/fr_FR.ISO8859-15 OLD_FILES+=usr/share/calendar/hr_HR.ISO8859-2/calendar.all OLD_FILES+=usr/share/calendar/hr_HR.ISO8859-2/calendar.praznici +OLD_DIRS+=usr/share/calendar/hr_HR.ISO8859-2 OLD_FILES+=usr/share/calendar/hu_HU.ISO8859-2/calendar.all OLD_FILES+=usr/share/calendar/hu_HU.ISO8859-2/calendar.nevnapok OLD_FILES+=usr/share/calendar/hu_HU.ISO8859-2/calendar.unnepek +OLD_DIRS+=usr/share/calendar/hu_HU.ISO8859-2 +OLD_FILES+=usr/share/calendar/pt_BR.ISO8859-1/calendar.all +OLD_FILES+=usr/share/calendar/pt_BR.ISO8859-1/calendar.commemorative +OLD_FILES+=usr/share/calendar/pt_BR.ISO8859-1/calendar.holidays +OLD_FILES+=usr/share/calendar/pt_BR.ISO8859-1/calendar.mcommemorative +OLD_DIRS+=usr/share/calendar/pt_BR.ISO8859-1 +OLD_FILES+=usr/share/calendar/pt_BR.UTF-8/calendar.all +OLD_FILES+=usr/share/calendar/pt_BR.UTF-8/calendar.commemorative +OLD_FILES+=usr/share/calendar/pt_BR.UTF-8/calendar.holidays +OLD_FILES+=usr/share/calendar/pt_BR.UTF-8/calendar.mcommemorative +OLD_DIRS+=usr/share/calendar/pt_BR.UTF-8 OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.all OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.common OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.holiday @@ -654,10 +674,20 @@ OLD_FILES+=usr/share/calendar/ru_RU.KOI8 OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.msk OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.orthodox OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.pagan +OLD_DIRS+=usr/share/calendar/ru_RU.KOI8-R +OLD_FILES+=usr/share/calendar/ru_RU.UTF-8/calendar.all +OLD_FILES+=usr/share/calendar/ru_RU.UTF-8/calendar.common +OLD_FILES+=usr/share/calendar/ru_RU.UTF-8/calendar.holiday +OLD_FILES+=usr/share/calendar/ru_RU.UTF-8/calendar.military +OLD_FILES+=usr/share/calendar/ru_RU.UTF-8/calendar.orthodox +OLD_FILES+=usr/share/calendar/ru_RU.UTF-8/calendar.pagan +OLD_DIRS+=usr/share/calendar/ru_RU.UTF-8 OLD_FILES+=usr/share/calendar/uk_UA.KOI8-U/calendar.all OLD_FILES+=usr/share/calendar/uk_UA.KOI8-U/calendar.holiday OLD_FILES+=usr/share/calendar/uk_UA.KOI8-U/calendar.misc OLD_FILES+=usr/share/calendar/uk_UA.KOI8-U/calendar.orthodox +OLD_DIRS+=usr/share/calendar/uk_UA.KOI8-U +OLD_DIRS+=usr/share/calendar OLD_FILES+=usr/share/man/man1/calendar.1.gz .endif @@ -680,9 +710,17 @@ OLD_FILES+=usr/bin/ctfdump OLD_FILES+=usr/bin/ctfmerge OLD_FILES+=usr/lib/dtrace/drti.o OLD_FILES+=usr/lib/dtrace/errno.d +OLD_FILES+=usr/lib/dtrace/io.d +OLD_FILES+=usr/lib/dtrace/ip.d OLD_FILES+=usr/lib/dtrace/psinfo.d +.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" +OLD_FILES+=usr/lib/dtrace/regs_x86.d +.endif OLD_FILES+=usr/lib/dtrace/signal.d +OLD_FILES+=usr/lib/dtrace/tcp.d +OLD_FILES+=usr/lib/dtrace/udp.d OLD_FILES+=usr/lib/dtrace/unistd.d +OLD_DIRS+=usr/lib/dtrace OLD_FILES+=usr/lib/libavl.a OLD_FILES+=usr/lib/libavl.so OLD_FILES+=usr/lib/libavl_p.a @@ -703,6 +741,7 @@ OLD_FILES+=usr/lib/libuutil.so OLD_FILES+=usr/lib/libuutil_p.a .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" OLD_FILES+=usr/lib32/dtrace/drti.o +OLD_DIRS+=usr/lib32/dtrace OLD_FILES+=usr/lib32/libavl.a OLD_FILES+=usr/lib32/libavl.so OLD_LIBS+=usr/lib32/libavl.so.2 @@ -756,6 +795,7 @@ OLD_FILES+=etc/devd/zfs.conf OLD_FILES+=etc/periodic/daily/404.status-zfs OLD_FILES+=etc/periodic/daily/800.scrub-zfs OLD_LIBS+=lib/libzfs.so.2 +OLD_LIBS+=lib/libzfs_core.so.2 OLD_LIBS+=lib/libzpool.so.2 OLD_FILES+=rescue/zfs OLD_FILES+=rescue/zpool @@ -765,6 +805,9 @@ OLD_FILES+=usr/bin/zinject OLD_FILES+=usr/bin/ztest OLD_FILES+=usr/lib/libzfs.a OLD_FILES+=usr/lib/libzfs.so +OLD_FILES+=usr/lib/libzfs_core.a +OLD_FILES+=usr/lib/libzfs_core.so +OLD_FILES+=usr/lib/libzfs_core_p.a OLD_FILES+=usr/lib/libzfs_p.a OLD_FILES+=usr/lib/libzpool.a OLD_FILES+=usr/lib/libzpool.so @@ -772,6 +815,10 @@ OLD_FILES+=usr/lib/libzpool.so OLD_FILES+=usr/lib32/libzfs.a OLD_FILES+=usr/lib32/libzfs.so OLD_LIBS+=usr/lib32/libzfs.so.2 +OLD_FILES+=usr/lib32/libzfs_core.a +OLD_FILES+=usr/lib32/libzfs_core.so +OLD_LIBS+=usr/lib32/libzfs_core.so.2 +OLD_FILES+=usr/lib32/libzfs_core_p.a OLD_FILES+=usr/lib32/libzfs_p.a OLD_FILES+=usr/lib32/libzpool.a OLD_FILES+=usr/lib32/libzpool.so @@ -1492,11 +1539,13 @@ OLD_FILES+=usr/libexec/cc1plus .if ${MK_DICT} == no OLD_FILES+=usr/share/dict/README +OLD_FILES+=usr/share/dict/eign OLD_FILES+=usr/share/dict/freebsd OLD_FILES+=usr/share/dict/propernames OLD_FILES+=usr/share/dict/web2 OLD_FILES+=usr/share/dict/web2a OLD_FILES+=usr/share/dict/words +OLD_DIRS+=usr/share/dict .endif .if ${MK_EE} == no @@ -1554,6 +1603,7 @@ OLD_FILES+=usr/games/random OLD_FILES+=usr/games/rot13 OLD_FILES+=usr/games/strfile OLD_FILES+=usr/games/unstr +OLD_DIRS+=usr/games OLD_FILES+=usr/share/games/fortune/fortunes OLD_FILES+=usr/share/games/fortune/fortunes-o OLD_FILES+=usr/share/games/fortune/fortunes-o.dat @@ -1572,6 +1622,8 @@ OLD_FILES+=usr/share/games/fortune/start OLD_FILES+=usr/share/games/fortune/startrek.dat OLD_FILES+=usr/share/games/fortune/zippy OLD_FILES+=usr/share/games/fortune/zippy.dat +OLD_DIRS+=usr/share/games/fortune +OLD_DIRS+=usr/share/games OLD_FILES+=usr/share/man/man6/bcd.6.gz OLD_FILES+=usr/share/man/man6/caesar.6.gz OLD_FILES+=usr/share/man/man6/factor.6.gz @@ -1644,9 +1696,12 @@ OLD_FILES+=usr/share/man/man1/kgdb.1.gz .if ${MK_GPIB} == no OLD_FILES+=usr/include/dev/ieee488/ibfoo_int.h +OLD_FILES+=usr/include/dev/ieee488/tnt4882.h OLD_FILES+=usr/include/dev/ieee488/ugpib.h OLD_FILES+=usr/include/dev/ieee488/upd7210.h +OLD_DIRS+=usr/include/dev/ieee488 OLD_FILES+=usr/include/gpib/gpib.h +OLD_DIRS+=usr/include/gpib OLD_FILES+=usr/lib/libgpib.a OLD_FILES+=usr/lib/libgpib.so OLD_LIBS+=usr/lib/libgpib.so.3 @@ -2357,6 +2412,8 @@ OLD_FILES+=usr/share/examples/ipfilter/i OLD_FILES+=usr/share/examples/ipfilter/ipf-howto.txt OLD_FILES+=usr/share/examples/ipfilter/examples.txt OLD_FILES+=usr/share/examples/ipfilter/rules.txt +OLD_FILES+=usr/share/examples/ipfilter/mkfilters +OLD_DIRS+=usr/share/examples/ipfilter OLD_FILES+=usr/share/man/man1/ipftest.1.gz OLD_FILES+=usr/share/man/man1/ipresend.1.gz OLD_FILES+=usr/share/man/man4/ipf.4.gz @@ -2451,11 +2508,13 @@ OLD_FILES+=usr/include/kadm5/kadm5-priva OLD_FILES+=usr/include/kadm5/kadm5-protos.h OLD_FILES+=usr/include/kadm5/kadm5_err.h OLD_FILES+=usr/include/kadm5/private.h +OLD_DIRS+=usr/include/kadm5 OLD_FILES+=usr/include/kafs.h OLD_FILES+=usr/include/krb5-protos.h OLD_FILES+=usr/include/krb5-types.h OLD_FILES+=usr/include/krb5-v4compat.h OLD_FILES+=usr/include/krb5.h +OLD_DIRS+=usr/include/krb5 OLD_FILES+=usr/include/krb5_asn1.h OLD_FILES+=usr/include/krb5_err.h OLD_FILES+=usr/include/krb_err.h @@ -3019,13 +3078,16 @@ OLD_FILES+=usr/bin/lprm OLD_FILES+=usr/libexec/lpr/ru/bjc-240.sh.sample OLD_FILES+=usr/libexec/lpr/ru/koi2alt OLD_FILES+=usr/libexec/lpr/ru/koi2855 +OLD_DIRS+=usr/libexec/lpr/ru OLD_FILES+=usr/libexec/lpr/lpf +OLD_DIRS+=usr/libexec/lpr OLD_FILES+=usr/sbin/chkprintcap OLD_FILES+=usr/sbin/lpc OLD_FILES+=usr/sbin/lpd OLD_FILES+=usr/sbin/lptest OLD_FILES+=usr/sbin/pac OLD_FILES+=usr/share/doc/smm/07.lpd/paper.ascii.gz +OLD_DIRS+=usr/share/doc/smm/07.lpd OLD_FILES+=usr/share/examples/etc/hosts.lpd OLD_FILES+=usr/share/examples/etc/printcap OLD_FILES+=usr/share/man/man1/lp.1.gz @@ -3263,6 +3325,7 @@ OLD_FILES+=usr/share/doc/ntp/rdebug.html OLD_FILES+=usr/share/doc/ntp/refclock.html OLD_FILES+=usr/share/doc/ntp/release.html OLD_FILES+=usr/share/doc/ntp/tickadj.html +OLD_DIRS+=usr/share/doc/ntp OLD_FILES+=usr/share/examples/etc/ntp.conf OLD_FILES+=usr/share/man/man5/ntp.conf.5.gz OLD_FILES+=usr/share/man/man5/ntp.keys.5.gz @@ -3429,6 +3492,7 @@ OLD_FILES+=usr/share/examples/pf/queue2 OLD_FILES+=usr/share/examples/pf/queue3 OLD_FILES+=usr/share/examples/pf/queue4 OLD_FILES+=usr/share/examples/pf/spamd +OLD_DIRS+=usr/share/examples/pf OLD_FILES+=usr/share/man/man4/pf.4.gz OLD_FILES+=usr/share/man/man4/pflog.4.gz OLD_FILES+=usr/share/man/man4/pfsync.4.gz @@ -3478,6 +3542,7 @@ OLD_FILES+=usr/share/man/man8/portsnap.8 .if ${MK_PPP} == no OLD_FILES+=etc/ppp/ppp.conf +OLD_DIRS+=etc/ppp OLD_FILES+=usr/sbin/ppp OLD_FILES+=usr/sbin/pppctl OLD_FILES+=usr/share/man/man8/ppp.8.gz @@ -3664,11 +3729,14 @@ OLD_FILES+=bin/rmail OLD_FILES+=usr/bin/vacation OLD_FILES+=usr/include/libmilter/mfapi.h OLD_FILES+=usr/include/libmilter/mfdef.h +OLD_DIRS+=usr/include/libmilter OLD_FILES+=usr/lib/libmilter.a +OLD_FILES+=usr/lib/libmilter.so OLD_LIBS+=usr/lib/libmilter.so.5 OLD_FILES+=usr/lib/libmilter_p.a .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" OLD_FILES+=usr/lib32/libmilter.a +OLD_FILES+=usr/lib32/libmilter.so OLD_LIBS+=usr/lib32/libmilter.so.5 OLD_FILES+=usr/lib32/libmilter_p.a .endif @@ -3680,6 +3748,7 @@ OLD_FILES+=usr/sbin/mailstats OLD_FILES+=usr/sbin/makemap OLD_FILES+=usr/sbin/praliases OLD_FILES+=usr/share/doc/smm/08.sendmailop/paper.ascii.gz +OLD_DIRS+=usr/share/doc/smm/08.sendmailop OLD_FILES+=usr/share/man/man1/mailq.1.gz OLD_FILES+=usr/share/man/man1/newaliases.1.gz OLD_FILES+=usr/share/man/man1/vacation.1.gz @@ -3731,12 +3800,14 @@ OLD_FILES+=usr/share/sendmail/cf/cf/ucba OLD_FILES+=usr/share/sendmail/cf/cf/ucbvax.mc OLD_FILES+=usr/share/sendmail/cf/cf/uucpproto.mc OLD_FILES+=usr/share/sendmail/cf/cf/vangogh.cs.mc +OLD_DIRS+=usr/share/sendmail/cf/cf OLD_FILES+=usr/share/sendmail/cf/domain/Berkeley.EDU.m4 OLD_FILES+=usr/share/sendmail/cf/domain/CS.Berkeley.EDU.m4 OLD_FILES+=usr/share/sendmail/cf/domain/EECS.Berkeley.EDU.m4 OLD_FILES+=usr/share/sendmail/cf/domain/S2K.Berkeley.EDU.m4 OLD_FILES+=usr/share/sendmail/cf/domain/berkeley-only.m4 OLD_FILES+=usr/share/sendmail/cf/domain/generic.m4 +OLD_DIRS+=usr/share/sendmail/cf/domain OLD_FILES+=usr/share/sendmail/cf/feature/accept_unqualified_senders.m4 OLD_FILES+=usr/share/sendmail/cf/feature/accept_unresolvable_domains.m4 OLD_FILES+=usr/share/sendmail/cf/feature/access_db.m4 @@ -3794,11 +3865,14 @@ OLD_FILES+=usr/share/sendmail/cf/feature OLD_FILES+=usr/share/sendmail/cf/feature/uucpdomain.m4 OLD_FILES+=usr/share/sendmail/cf/feature/virtuser_entire_domain.m4 OLD_FILES+=usr/share/sendmail/cf/feature/virtusertable.m4 +OLD_DIRS+=usr/share/sendmail/cf/feature OLD_FILES+=usr/share/sendmail/cf/hack/cssubdomain.m4 +OLD_DIRS+=usr/share/sendmail/cf/hack OLD_FILES+=usr/share/sendmail/cf/m4/cf.m4 OLD_FILES+=usr/share/sendmail/cf/m4/cfhead.m4 OLD_FILES+=usr/share/sendmail/cf/m4/proto.m4 OLD_FILES+=usr/share/sendmail/cf/m4/version.m4 +OLD_DIRS+=usr/share/sendmail/cf/m4 OLD_FILES+=usr/share/sendmail/cf/mailer/cyrus.m4 OLD_FILES+=usr/share/sendmail/cf/mailer/cyrusv2.m4 OLD_FILES+=usr/share/sendmail/cf/mailer/fax.m4 @@ -3811,6 +3885,7 @@ OLD_FILES+=usr/share/sendmail/cf/mailer/ OLD_FILES+=usr/share/sendmail/cf/mailer/smtp.m4 OLD_FILES+=usr/share/sendmail/cf/mailer/usenet.m4 OLD_FILES+=usr/share/sendmail/cf/mailer/uucp.m4 +OLD_DIRS+=usr/share/sendmail/cf/mailer OLD_FILES+=usr/share/sendmail/cf/ostype/a-ux.m4 OLD_FILES+=usr/share/sendmail/cf/ostype/aix3.m4 OLD_FILES+=usr/share/sendmail/cf/ostype/aix4.m4 @@ -3852,6 +3927,7 @@ OLD_FILES+=usr/share/sendmail/cf/ostype/ OLD_FILES+=usr/share/sendmail/cf/ostype/sco-uw-2.1.m4 OLD_FILES+=usr/share/sendmail/cf/ostype/sco3.2.m4 OLD_FILES+=usr/share/sendmail/cf/ostype/sinix.m4 +OLD_FILES+=usr/share/sendmail/cf/ostype/solaris11.m4 OLD_FILES+=usr/share/sendmail/cf/ostype/solaris2.m4 OLD_FILES+=usr/share/sendmail/cf/ostype/solaris2.ml.m4 OLD_FILES+=usr/share/sendmail/cf/ostype/solaris2.pre5.m4 @@ -3866,12 +3942,17 @@ OLD_FILES+=usr/share/sendmail/cf/ostype/ OLD_FILES+=usr/share/sendmail/cf/ostype/unixware7.m4 OLD_FILES+=usr/share/sendmail/cf/ostype/unknown.m4 OLD_FILES+=usr/share/sendmail/cf/ostype/uxpds.m4 +OLD_DIRS+=usr/share/sendmail/cf/ostype OLD_FILES+=usr/share/sendmail/cf/sendmail.schema OLD_FILES+=usr/share/sendmail/cf/sh/makeinfo.sh +OLD_DIRS+=usr/share/sendmail/cf/sh OLD_FILES+=usr/share/sendmail/cf/siteconfig/uucp.cogsci.m4 OLD_FILES+=usr/share/sendmail/cf/siteconfig/uucp.old.arpa.m4 OLD_FILES+=usr/share/sendmail/cf/siteconfig/uucp.ucbarpa.m4 OLD_FILES+=usr/share/sendmail/cf/siteconfig/uucp.ucbvax.m4 +OLD_DIRS+=usr/share/sendmail/cf/siteconfig +OLD_DIRS+=usr/share/sendmail/cf +OLD_DIRS+=usr/share/sendmail .endif #.if ${MK_SHAREDOCS} == no @@ -3896,35 +3977,57 @@ OLD_FILES+=rescue/csh OLD_FILES+=rescue/tcsh OLD_FILES+=usr/share/examples/tcsh/complete.tcsh OLD_FILES+=usr/share/examples/tcsh/csh-mode.el +OLD_DIRS+=usr/share/examples/tcsh OLD_FILES+=usr/share/man/man1/csh.1.gz OLD_FILES+=usr/share/man/man1/tcsh.1.gz OLD_FILES+=usr/share/nls/de_AT.ISO8859-1/tcsh.cat OLD_FILES+=usr/share/nls/de_AT.ISO8859-15/tcsh.cat +OLD_FILES+=usr/share/nls/de_AT.UTF-8/tcsh.cat OLD_FILES+=usr/share/nls/de_CH.ISO8859-1/tcsh.cat OLD_FILES+=usr/share/nls/de_CH.ISO8859-15/tcsh.cat +OLD_FILES+=usr/share/nls/de_CH.UTF-8/tcsh.cat OLD_FILES+=usr/share/nls/de_DE.ISO8859-1/tcsh.cat OLD_FILES+=usr/share/nls/de_DE.ISO8859-15/tcsh.cat +OLD_FILES+=usr/share/nls/de_DE.UTF-8/tcsh.cat OLD_FILES+=usr/share/nls/el_GR.ISO8859-7/tcsh.cat +OLD_FILES+=usr/share/nls/el_GR.UTF-8/tcsh.cat OLD_FILES+=usr/share/nls/es_ES.ISO8859-1/tcsh.cat OLD_FILES+=usr/share/nls/es_ES.ISO8859-15/tcsh.cat +OLD_FILES+=usr/share/nls/es_ES.UTF-8/tcsh.cat OLD_FILES+=usr/share/nls/et_EE.ISO8859-15/tcsh.cat +OLD_FILES+=usr/share/nls/et_EE.UTF-8/tcsh.cat OLD_FILES+=usr/share/nls/fi_FI.ISO8859-1/tcsh.cat OLD_FILES+=usr/share/nls/fi_FI.ISO8859-15/tcsh.cat +OLD_FILES+=usr/share/nls/fi_FI.UTF-8/tcsh.cat OLD_FILES+=usr/share/nls/fr_BE.ISO8859-1/tcsh.cat OLD_FILES+=usr/share/nls/fr_BE.ISO8859-15/tcsh.cat +OLD_FILES+=usr/share/nls/fr_BE.UTF-8/tcsh.cat OLD_FILES+=usr/share/nls/fr_CA.ISO8859-1/tcsh.cat OLD_FILES+=usr/share/nls/fr_CA.ISO8859-15/tcsh.cat +OLD_FILES+=usr/share/nls/fr_CA.UTF-8/tcsh.cat OLD_FILES+=usr/share/nls/fr_CH.ISO8859-1/tcsh.cat OLD_FILES+=usr/share/nls/fr_CH.ISO8859-15/tcsh.cat +OLD_FILES+=usr/share/nls/fr_CH.UTF-8/tcsh.cat OLD_FILES+=usr/share/nls/fr_FR.ISO8859-1/tcsh.cat OLD_FILES+=usr/share/nls/fr_FR.ISO8859-15/tcsh.cat +OLD_FILES+=usr/share/nls/fr_FR.UTF-8/tcsh.cat OLD_FILES+=usr/share/nls/it_CH.ISO8859-1/tcsh.cat OLD_FILES+=usr/share/nls/it_CH.ISO8859-15/tcsh.cat +OLD_FILES+=usr/share/nls/it_CH.UTF-8/tcsh.cat OLD_FILES+=usr/share/nls/it_IT.ISO8859-1/tcsh.cat OLD_FILES+=usr/share/nls/it_IT.ISO8859-15/tcsh.cat +OLD_FILES+=usr/share/nls/it_IT.UTF-8/tcsh.cat +OLD_FILES+=usr/share/nls/ja_JP.SJIS/tcsh.cat +OLD_FILES+=usr/share/nls/ja_JP.UTF-8/tcsh.cat OLD_FILES+=usr/share/nls/ja_JP.eucJP/tcsh.cat +OLD_FILES+=usr/share/nls/ru_RU.CP1251/tcsh.cat +OLD_FILES+=usr/share/nls/ru_RU.CP866/tcsh.cat +OLD_FILES+=usr/share/nls/ru_RU.ISO8859-5/tcsh.cat OLD_FILES+=usr/share/nls/ru_RU.KOI8-R/tcsh.cat +OLD_FILES+=usr/share/nls/ru_RU.UTF-8/tcsh.cat +OLD_FILES+=usr/share/nls/uk_UA.ISO8859-5/tcsh.cat OLD_FILES+=usr/share/nls/uk_UA.KOI8-U/tcsh.cat +OLD_FILES+=usr/share/nls/uk_UA.UTF-8/tcsh.cat .endif .if ${MK_TELNET} == no @@ -4321,6 +4424,7 @@ OLD_FILES+=usr/share/examples/etc/wpa_su OLD_FILES+=usr/share/examples/hostapd/hostapd.conf OLD_FILES+=usr/share/examples/hostapd/hostapd.eap_user OLD_FILES+=usr/share/examples/hostapd/hostapd.wpa_psk +OLD_DIRS+=usr/share/examples/hostapd OLD_FILES+=usr/share/man/man5/hostapd.conf.5.gz OLD_FILES+=usr/share/man/man5/wpa_supplicant.conf.5.gz OLD_FILES+=usr/share/man/man8/ancontrol.8.gz From owner-svn-src-stable-9@freebsd.org Mon Oct 26 11:36:43 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E49ABA196B6; Mon, 26 Oct 2015 11:36:43 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2E7A61D1F; Mon, 26 Oct 2015 11:36:43 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9QBagNo044832; Mon, 26 Oct 2015 11:36:42 GMT (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9QBagkw044827; Mon, 26 Oct 2015 11:36:42 GMT (envelope-from glebius@FreeBSD.org) Message-Id: <201510261136.t9QBagkw044827@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: glebius set sender to glebius@FreeBSD.org using -f From: Gleb Smirnoff Date: Mon, 26 Oct 2015 11:36:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r289998 - in stable/9: . contrib/ntp contrib/ntp/adjtimed contrib/ntp/arlib contrib/ntp/clockstuff contrib/ntp/conf contrib/ntp/html contrib/ntp/html/build contrib/ntp/html/drivers cont... X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2015 11:36:44 -0000 Author: glebius Date: Mon Oct 26 11:36:40 2015 New Revision: 289998 URL: https://svnweb.freebsd.org/changeset/base/289998 Log: Upgrade NTP to 4.2.8p4. Security: FreeBSD-SA-15:25.ntp Security: CVE-2015-7871 Security: CVE-2015-7855 Security: CVE-2015-7854 Security: CVE-2015-7853 Security: CVE-2015-7852 Security: CVE-2015-7851 Security: CVE-2015-7850 Security: CVE-2015-7849 Security: CVE-2015-7848 Security: CVE-2015-7701 Security: CVE-2015-7703 Security: CVE-2015-7704, CVE-2015-7705 Security: CVE-2015-7691, CVE-2015-7692, CVE-2015-7702 Added: stable/9/contrib/ntp/README.leapsmear - copied unchanged from r285170, head/contrib/ntp/README.leapsmear stable/9/contrib/ntp/check-libopts.mf - copied unchanged from r280849, head/contrib/ntp/check-libopts.mf stable/9/contrib/ntp/deps-ver - copied unchanged from r280849, head/contrib/ntp/deps-ver stable/9/contrib/ntp/depsver.mf - copied unchanged from r280849, head/contrib/ntp/depsver.mf stable/9/contrib/ntp/html/access.html - copied unchanged from r280849, head/contrib/ntp/html/access.html stable/9/contrib/ntp/html/authentic.html - copied unchanged from r280849, head/contrib/ntp/html/authentic.html stable/9/contrib/ntp/html/autokey.html - copied unchanged from r280849, head/contrib/ntp/html/autokey.html stable/9/contrib/ntp/html/bugs.html - copied unchanged from r280849, head/contrib/ntp/html/bugs.html stable/9/contrib/ntp/html/build.html - copied, changed from r280849, head/contrib/ntp/html/build.html stable/9/contrib/ntp/html/clock.html - copied unchanged from r280849, head/contrib/ntp/html/clock.html stable/9/contrib/ntp/html/cluster.html - copied unchanged from r280849, head/contrib/ntp/html/cluster.html stable/9/contrib/ntp/html/comdex.html - copied unchanged from r280849, head/contrib/ntp/html/comdex.html stable/9/contrib/ntp/html/config.html - copied unchanged from r280849, head/contrib/ntp/html/config.html stable/9/contrib/ntp/html/decode.html - copied, changed from r280849, head/contrib/ntp/html/decode.html stable/9/contrib/ntp/html/discipline.html - copied unchanged from r280849, head/contrib/ntp/html/discipline.html stable/9/contrib/ntp/html/discover.html - copied unchanged from r280849, head/contrib/ntp/html/discover.html - copied unchanged from r285170, head/contrib/ntp/html/drivers/driver40-ja.html stable/9/contrib/ntp/html/drivers/driver45.html - copied unchanged from r280849, head/contrib/ntp/html/drivers/driver45.html stable/9/contrib/ntp/html/drivers/driver46.html - copied, changed from r280849, head/contrib/ntp/html/drivers/driver46.html stable/9/contrib/ntp/html/drivers/mx4200data.html - copied unchanged from r280849, head/contrib/ntp/html/drivers/mx4200data.html stable/9/contrib/ntp/html/filter.html - copied unchanged from r280849, head/contrib/ntp/html/filter.html stable/9/contrib/ntp/html/hints/ - copied from r280849, head/contrib/ntp/html/hints/ stable/9/contrib/ntp/html/hints.html - copied unchanged from r280849, head/contrib/ntp/html/hints.html stable/9/contrib/ntp/html/history.html - copied unchanged from r280849, head/contrib/ntp/html/history.html stable/9/contrib/ntp/html/huffpuff.html - copied unchanged from r280849, head/contrib/ntp/html/huffpuff.html stable/9/contrib/ntp/html/icons/sitemap.png - copied unchanged from r280849, head/contrib/ntp/html/icons/sitemap.png stable/9/contrib/ntp/html/kernpps.html - copied unchanged from r280849, head/contrib/ntp/html/kernpps.html stable/9/contrib/ntp/html/leap.html - copied unchanged from r280849, head/contrib/ntp/html/leap.html stable/9/contrib/ntp/html/ntp-wait.html - copied unchanged from r280849, head/contrib/ntp/html/ntp-wait.html stable/9/contrib/ntp/html/orphan.html - copied unchanged from r280849, head/contrib/ntp/html/orphan.html stable/9/contrib/ntp/html/pic/ - copied from r280849, head/contrib/ntp/html/pic/ stable/9/contrib/ntp/html/poll.html - copied unchanged from r280849, head/contrib/ntp/html/poll.html stable/9/contrib/ntp/html/quick.html - copied unchanged from r280849, head/contrib/ntp/html/quick.html stable/9/contrib/ntp/html/rate.html - copied unchanged from r280849, head/contrib/ntp/html/rate.html stable/9/contrib/ntp/html/scripts/accopt.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/accopt.txt stable/9/contrib/ntp/html/scripts/audio.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/audio.txt stable/9/contrib/ntp/html/scripts/authopt.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/authopt.txt stable/9/contrib/ntp/html/scripts/clockopt.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/clockopt.txt stable/9/contrib/ntp/html/scripts/command.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/command.txt stable/9/contrib/ntp/html/scripts/config.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/config.txt stable/9/contrib/ntp/html/scripts/confopt.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/confopt.txt stable/9/contrib/ntp/html/scripts/external.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/external.txt stable/9/contrib/ntp/html/scripts/hand.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/hand.txt stable/9/contrib/ntp/html/scripts/install.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/install.txt stable/9/contrib/ntp/html/scripts/manual.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/manual.txt stable/9/contrib/ntp/html/scripts/misc.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/misc.txt stable/9/contrib/ntp/html/scripts/miscopt.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/miscopt.txt stable/9/contrib/ntp/html/scripts/monopt.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/monopt.txt stable/9/contrib/ntp/html/scripts/refclock.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/refclock.txt stable/9/contrib/ntp/html/scripts/special.txt - copied unchanged from r280849, head/contrib/ntp/html/scripts/special.txt stable/9/contrib/ntp/html/select.html - copied unchanged from r280849, head/contrib/ntp/html/select.html stable/9/contrib/ntp/html/sitemap.html - copied unchanged from r280849, head/contrib/ntp/html/sitemap.html stable/9/contrib/ntp/html/stats.html - copied, changed from r280849, head/contrib/ntp/html/stats.html stable/9/contrib/ntp/html/warp.html - copied unchanged from r280849, head/contrib/ntp/html/warp.html stable/9/contrib/ntp/html/xleave.html - copied unchanged from r280849, head/contrib/ntp/html/xleave.html stable/9/contrib/ntp/include/declcond.h - copied unchanged from r280849, head/contrib/ntp/include/declcond.h stable/9/contrib/ntp/include/intreswork.h - copied unchanged from r280849, head/contrib/ntp/include/intreswork.h stable/9/contrib/ntp/include/lib_strbuf.h - copied unchanged from r280849, head/contrib/ntp/include/lib_strbuf.h stable/9/contrib/ntp/include/libntp.h - copied unchanged from r280849, head/contrib/ntp/include/libntp.h stable/9/contrib/ntp/include/ntp_assert.h - copied, changed from r280849, head/contrib/ntp/include/ntp_assert.h stable/9/contrib/ntp/include/ntp_intres.h - copied unchanged from r280849, head/contrib/ntp/include/ntp_intres.h stable/9/contrib/ntp/include/ntp_libopts.h - copied unchanged from r280849, head/contrib/ntp/include/ntp_libopts.h stable/9/contrib/ntp/include/ntp_lineedit.h - copied unchanged from r280849, head/contrib/ntp/include/ntp_lineedit.h stable/9/contrib/ntp/include/ntp_lists.h - copied, changed from r280849, head/contrib/ntp/include/ntp_lists.h stable/9/contrib/ntp/include/ntp_net.h - copied unchanged from r280849, head/contrib/ntp/include/ntp_net.h stable/9/contrib/ntp/include/ntp_prio_q.h - copied unchanged from r280849, head/contrib/ntp/include/ntp_prio_q.h stable/9/contrib/ntp/include/ntp_worker.h - copied unchanged from r280849, head/contrib/ntp/include/ntp_worker.h stable/9/contrib/ntp/include/ntp_workimpl.h - copied unchanged from r280849, head/contrib/ntp/include/ntp_workimpl.h stable/9/contrib/ntp/include/rc_cmdlength.h - copied unchanged from r289764, head/contrib/ntp/include/rc_cmdlength.h stable/9/contrib/ntp/include/refclock_atom.h - copied unchanged from r280849, head/contrib/ntp/include/refclock_atom.h - copied unchanged from r285170, head/contrib/ntp/include/refidsmear.h stable/9/contrib/ntp/include/ssl_applink.c - copied unchanged from r280849, head/contrib/ntp/include/ssl_applink.c stable/9/contrib/ntp/include/timespecops.h - copied unchanged from r280849, head/contrib/ntp/include/timespecops.h stable/9/contrib/ntp/include/timetoa.h - copied unchanged from r280849, head/contrib/ntp/include/timetoa.h stable/9/contrib/ntp/include/timevalops.h - copied unchanged from r280849, head/contrib/ntp/include/timevalops.h stable/9/contrib/ntp/include/vint64ops.h - copied unchanged from r280849, head/contrib/ntp/include/vint64ops.h stable/9/contrib/ntp/includes.mf - copied unchanged from r280849, head/contrib/ntp/includes.mf stable/9/contrib/ntp/lib/ - copied from r280849, head/contrib/ntp/lib/ stable/9/contrib/ntp/libjsmn/ - copied from r280849, head/contrib/ntp/libjsmn/ stable/9/contrib/ntp/libjsmn/example/ - copied from r285170, head/contrib/ntp/libjsmn/example/ stable/9/contrib/ntp/libntp/bsd_strerror.c - copied unchanged from r280849, head/contrib/ntp/libntp/bsd_strerror.c stable/9/contrib/ntp/libntp/ntp_calendar.c - copied, changed from r280849, head/contrib/ntp/libntp/ntp_calendar.c stable/9/contrib/ntp/libntp/ntp_crypto_rnd.c - copied unchanged from r280849, head/contrib/ntp/libntp/ntp_crypto_rnd.c stable/9/contrib/ntp/libntp/ntp_intres.c - copied, changed from r280849, head/contrib/ntp/libntp/ntp_intres.c stable/9/contrib/ntp/libntp/ntp_libopts.c - copied unchanged from r280849, head/contrib/ntp/libntp/ntp_libopts.c stable/9/contrib/ntp/libntp/ntp_lineedit.c - copied, changed from r280849, head/contrib/ntp/libntp/ntp_lineedit.c stable/9/contrib/ntp/libntp/ntp_worker.c - copied, changed from r280849, head/contrib/ntp/libntp/ntp_worker.c - copied unchanged from r285170, head/contrib/ntp/libntp/refidsmear.c stable/9/contrib/ntp/libntp/socket.c - copied, changed from r280849, head/contrib/ntp/libntp/socket.c stable/9/contrib/ntp/libntp/ssl_init.c - copied unchanged from r280849, head/contrib/ntp/libntp/ssl_init.c stable/9/contrib/ntp/libntp/strl_obsd.c - copied unchanged from r280849, head/contrib/ntp/libntp/strl_obsd.c stable/9/contrib/ntp/libntp/timetoa.c - copied unchanged from r280849, head/contrib/ntp/libntp/timetoa.c stable/9/contrib/ntp/libntp/timevalops.c - copied unchanged from r280849, head/contrib/ntp/libntp/timevalops.c stable/9/contrib/ntp/libntp/vint64ops.c - copied unchanged from r280849, head/contrib/ntp/libntp/vint64ops.c stable/9/contrib/ntp/libntp/work_fork.c - copied, changed from r280849, head/contrib/ntp/libntp/work_fork.c stable/9/contrib/ntp/libntp/work_thread.c - copied unchanged from r280849, head/contrib/ntp/libntp/work_thread.c stable/9/contrib/ntp/libparse/clk_sel240x.c - copied, changed from r280849, head/contrib/ntp/libparse/clk_sel240x.c stable/9/contrib/ntp/ntpd/complete.conf.in - copied, changed from r280849, head/contrib/ntp/ntpd/complete.conf.in stable/9/contrib/ntp/ntpd/declcond.h - copied unchanged from r280849, head/contrib/ntp/ntpd/declcond.h stable/9/contrib/ntp/ntpd/invoke-ntp.conf.menu - copied unchanged from r280849, head/contrib/ntp/ntpd/invoke-ntp.conf.menu stable/9/contrib/ntp/ntpd/invoke-ntp.conf.texi - copied, changed from r280849, head/contrib/ntp/ntpd/invoke-ntp.conf.texi stable/9/contrib/ntp/ntpd/invoke-ntp.keys.menu - copied unchanged from r280849, head/contrib/ntp/ntpd/invoke-ntp.keys.menu stable/9/contrib/ntp/ntpd/invoke-ntp.keys.texi - copied, changed from r280849, head/contrib/ntp/ntpd/invoke-ntp.keys.texi stable/9/contrib/ntp/ntpd/invoke-ntpd.menu - copied unchanged from r280849, head/contrib/ntp/ntpd/invoke-ntpd.menu stable/9/contrib/ntp/ntpd/invoke-ntpd.texi - copied, changed from r280849, head/contrib/ntp/ntpd/invoke-ntpd.texi stable/9/contrib/ntp/ntpd/keyword-gen-utd - copied, changed from r280849, head/contrib/ntp/ntpd/keyword-gen-utd stable/9/contrib/ntp/ntpd/keyword-gen.c - copied, changed from r280849, head/contrib/ntp/ntpd/keyword-gen.c stable/9/contrib/ntp/ntpd/ntp.conf.5man - copied, changed from r280849, head/contrib/ntp/ntpd/ntp.conf.5man stable/9/contrib/ntp/ntpd/ntp.conf.5mdoc - copied, changed from r280849, head/contrib/ntp/ntpd/ntp.conf.5mdoc stable/9/contrib/ntp/ntpd/ntp.conf.def - copied, changed from r280849, head/contrib/ntp/ntpd/ntp.conf.def stable/9/contrib/ntp/ntpd/ntp.conf.html - copied, changed from r280849, head/contrib/ntp/ntpd/ntp.conf.html stable/9/contrib/ntp/ntpd/ntp.conf.man.in - copied, changed from r280849, head/contrib/ntp/ntpd/ntp.conf.man.in stable/9/contrib/ntp/ntpd/ntp.conf.mdoc.in - copied, changed from r280849, head/contrib/ntp/ntpd/ntp.conf.mdoc.in stable/9/contrib/ntp/ntpd/ntp.conf.texi - copied unchanged from r280849, head/contrib/ntp/ntpd/ntp.conf.texi stable/9/contrib/ntp/ntpd/ntp.keys.5man - copied, changed from r280849, head/contrib/ntp/ntpd/ntp.keys.5man stable/9/contrib/ntp/ntpd/ntp.keys.5mdoc - copied, changed from r280849, head/contrib/ntp/ntpd/ntp.keys.5mdoc stable/9/contrib/ntp/ntpd/ntp.keys.def - copied unchanged from r280849, head/contrib/ntp/ntpd/ntp.keys.def stable/9/contrib/ntp/ntpd/ntp.keys.html - copied, changed from r280849, head/contrib/ntp/ntpd/ntp.keys.html stable/9/contrib/ntp/ntpd/ntp.keys.man.in - copied, changed from r280849, head/contrib/ntp/ntpd/ntp.keys.man.in stable/9/contrib/ntp/ntpd/ntp.keys.mdoc.in - copied, changed from r280849, head/contrib/ntp/ntpd/ntp.keys.mdoc.in stable/9/contrib/ntp/ntpd/ntp.keys.texi - copied unchanged from r280849, head/contrib/ntp/ntpd/ntp.keys.texi stable/9/contrib/ntp/ntpd/ntp_keyword.h - copied, changed from r280849, head/contrib/ntp/ntpd/ntp_keyword.h stable/9/contrib/ntp/ntpd/ntp_leapsec.c - copied, changed from r280849, head/contrib/ntp/ntpd/ntp_leapsec.c stable/9/contrib/ntp/ntpd/ntp_leapsec.h - copied, changed from r280849, head/contrib/ntp/ntpd/ntp_leapsec.h stable/9/contrib/ntp/ntpd/ntp_parser.c - copied, changed from r280849, head/contrib/ntp/ntpd/ntp_parser.c stable/9/contrib/ntp/ntpd/ntp_parser.h - copied, changed from r280849, head/contrib/ntp/ntpd/ntp_parser.h stable/9/contrib/ntp/ntpd/ntp_prio_q.c - copied unchanged from r280849, head/contrib/ntp/ntpd/ntp_prio_q.c stable/9/contrib/ntp/ntpd/ntp_scanner.c - copied, changed from r280849, head/contrib/ntp/ntpd/ntp_scanner.c stable/9/contrib/ntp/ntpd/ntp_scanner.h - copied, changed from r280849, head/contrib/ntp/ntpd/ntp_scanner.h stable/9/contrib/ntp/ntpd/ntp_signd.c - copied unchanged from r280849, head/contrib/ntp/ntpd/ntp_signd.c stable/9/contrib/ntp/ntpd/ntpd.1ntpdman - copied, changed from r280849, head/contrib/ntp/ntpd/ntpd.1ntpdman stable/9/contrib/ntp/ntpd/ntpd.1ntpdmdoc - copied, changed from r280849, head/contrib/ntp/ntpd/ntpd.1ntpdmdoc stable/9/contrib/ntp/ntpd/ntpd.html - copied, changed from r280849, head/contrib/ntp/ntpd/ntpd.html stable/9/contrib/ntp/ntpd/ntpd.man.in - copied, changed from r280849, head/contrib/ntp/ntpd/ntpd.man.in stable/9/contrib/ntp/ntpd/ntpd.mdoc.in - copied, changed from r280849, head/contrib/ntp/ntpd/ntpd.mdoc.in stable/9/contrib/ntp/ntpd/ntpd.texi - copied unchanged from r280849, head/contrib/ntp/ntpd/ntpd.texi stable/9/contrib/ntp/ntpd/rc_cmdlength.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/ntpd/rc_cmdlength.c stable/9/contrib/ntp/ntpd/refclock_gpsdjson.c - copied, changed from r280849, head/contrib/ntp/ntpd/refclock_gpsdjson.c stable/9/contrib/ntp/ntpd/refclock_tsyncpci.c - copied unchanged from r280849, head/contrib/ntp/ntpd/refclock_tsyncpci.c stable/9/contrib/ntp/ntpdc/invoke-ntpdc.menu - copied unchanged from r280849, head/contrib/ntp/ntpdc/invoke-ntpdc.menu stable/9/contrib/ntp/ntpdc/invoke-ntpdc.texi - copied, changed from r280849, head/contrib/ntp/ntpdc/invoke-ntpdc.texi stable/9/contrib/ntp/ntpdc/ntpdc.1ntpdcman - copied, changed from r280849, head/contrib/ntp/ntpdc/ntpdc.1ntpdcman stable/9/contrib/ntp/ntpdc/ntpdc.1ntpdcmdoc - copied, changed from r280849, head/contrib/ntp/ntpdc/ntpdc.1ntpdcmdoc stable/9/contrib/ntp/ntpdc/ntpdc.html - copied, changed from r280849, head/contrib/ntp/ntpdc/ntpdc.html stable/9/contrib/ntp/ntpdc/ntpdc.man.in - copied, changed from r280849, head/contrib/ntp/ntpdc/ntpdc.man.in stable/9/contrib/ntp/ntpdc/ntpdc.mdoc.in - copied, changed from r280849, head/contrib/ntp/ntpdc/ntpdc.mdoc.in stable/9/contrib/ntp/ntpdc/ntpdc.texi - copied unchanged from r280849, head/contrib/ntp/ntpdc/ntpdc.texi stable/9/contrib/ntp/ntpq/invoke-ntpq.menu - copied unchanged from r280849, head/contrib/ntp/ntpq/invoke-ntpq.menu stable/9/contrib/ntp/ntpq/invoke-ntpq.texi - copied, changed from r280849, head/contrib/ntp/ntpq/invoke-ntpq.texi stable/9/contrib/ntp/ntpq/libntpq.c - copied unchanged from r280849, head/contrib/ntp/ntpq/libntpq.c stable/9/contrib/ntp/ntpq/libntpq.h - copied, changed from r280849, head/contrib/ntp/ntpq/libntpq.h stable/9/contrib/ntp/ntpq/libntpq_subs.c - copied unchanged from r280849, head/contrib/ntp/ntpq/libntpq_subs.c stable/9/contrib/ntp/ntpq/ntpq.1ntpqman - copied, changed from r280849, head/contrib/ntp/ntpq/ntpq.1ntpqman stable/9/contrib/ntp/ntpq/ntpq.1ntpqmdoc - copied, changed from r280849, head/contrib/ntp/ntpq/ntpq.1ntpqmdoc stable/9/contrib/ntp/ntpq/ntpq.html - copied, changed from r280849, head/contrib/ntp/ntpq/ntpq.html stable/9/contrib/ntp/ntpq/ntpq.man.in - copied, changed from r280849, head/contrib/ntp/ntpq/ntpq.man.in stable/9/contrib/ntp/ntpq/ntpq.mdoc.in - copied, changed from r280849, head/contrib/ntp/ntpq/ntpq.mdoc.in stable/9/contrib/ntp/ntpq/ntpq.texi - copied unchanged from r280849, head/contrib/ntp/ntpq/ntpq.texi stable/9/contrib/ntp/ntpsnmpd/ - copied from r280849, head/contrib/ntp/ntpsnmpd/ stable/9/contrib/ntp/scripts/build/ - copied from r280849, head/contrib/ntp/scripts/build/ stable/9/contrib/ntp/scripts/calc_tickadj/ - copied from r280849, head/contrib/ntp/scripts/calc_tickadj/ stable/9/contrib/ntp/scripts/deprecated/ - copied from r280849, head/contrib/ntp/scripts/deprecated/ stable/9/contrib/ntp/scripts/invoke-plot_summary.menu - copied unchanged from r280849, head/contrib/ntp/scripts/invoke-plot_summary.menu stable/9/contrib/ntp/scripts/invoke-plot_summary.texi - copied, changed from r280849, head/contrib/ntp/scripts/invoke-plot_summary.texi stable/9/contrib/ntp/scripts/invoke-summary.menu - copied unchanged from r280849, head/contrib/ntp/scripts/invoke-summary.menu stable/9/contrib/ntp/scripts/invoke-summary.texi - copied, changed from r280849, head/contrib/ntp/scripts/invoke-summary.texi stable/9/contrib/ntp/scripts/lib/ - copied from r280849, head/contrib/ntp/scripts/lib/ stable/9/contrib/ntp/scripts/ntp-wait/ - copied from r280849, head/contrib/ntp/scripts/ntp-wait/ stable/9/contrib/ntp/scripts/ntpsweep/ - copied from r280849, head/contrib/ntp/scripts/ntpsweep/ stable/9/contrib/ntp/scripts/ntptrace/ - copied from r280849, head/contrib/ntp/scripts/ntptrace/ stable/9/contrib/ntp/scripts/plot_summary-opts - copied, changed from r280849, head/contrib/ntp/scripts/plot_summary-opts stable/9/contrib/ntp/scripts/plot_summary-opts.def - copied unchanged from r280849, head/contrib/ntp/scripts/plot_summary-opts.def stable/9/contrib/ntp/scripts/plot_summary.1plot_summaryman - copied, changed from r280849, head/contrib/ntp/scripts/plot_summary.1plot_summaryman stable/9/contrib/ntp/scripts/plot_summary.1plot_summarymdoc - copied, changed from r280849, head/contrib/ntp/scripts/plot_summary.1plot_summarymdoc stable/9/contrib/ntp/scripts/plot_summary.html - copied, changed from r280849, head/contrib/ntp/scripts/plot_summary.html stable/9/contrib/ntp/scripts/plot_summary.man.in - copied, changed from r280849, head/contrib/ntp/scripts/plot_summary.man.in stable/9/contrib/ntp/scripts/plot_summary.mdoc.in - copied, changed from r280849, head/contrib/ntp/scripts/plot_summary.mdoc.in stable/9/contrib/ntp/scripts/plot_summary.texi - copied unchanged from r280849, head/contrib/ntp/scripts/plot_summary.texi stable/9/contrib/ntp/scripts/rc/ - copied from r280849, head/contrib/ntp/scripts/rc/ stable/9/contrib/ntp/scripts/summary-opts - copied, changed from r280849, head/contrib/ntp/scripts/summary-opts stable/9/contrib/ntp/scripts/summary-opts.def - copied unchanged from r280849, head/contrib/ntp/scripts/summary-opts.def stable/9/contrib/ntp/scripts/summary.1summaryman - copied, changed from r280849, head/contrib/ntp/scripts/summary.1summaryman stable/9/contrib/ntp/scripts/summary.1summarymdoc - copied, changed from r280849, head/contrib/ntp/scripts/summary.1summarymdoc stable/9/contrib/ntp/scripts/summary.html - copied, changed from r280849, head/contrib/ntp/scripts/summary.html stable/9/contrib/ntp/scripts/summary.man.in - copied, changed from r280849, head/contrib/ntp/scripts/summary.man.in stable/9/contrib/ntp/scripts/summary.mdoc.in - copied, changed from r280849, head/contrib/ntp/scripts/summary.mdoc.in stable/9/contrib/ntp/scripts/summary.texi - copied unchanged from r280849, head/contrib/ntp/scripts/summary.texi stable/9/contrib/ntp/scripts/update-leap/ - copied from r282408, head/contrib/ntp/scripts/update-leap/ - copied unchanged from r285170, head/contrib/ntp/scripts/update-leap/update-leap.in - copied unchanged from r285170, head/contrib/ntp/scripts/update-leap/update-leap.sh stable/9/contrib/ntp/sntp/ag-tpl/ - copied from r280849, head/contrib/ntp/sntp/ag-tpl/ - copied unchanged from r285170, head/contrib/ntp/sntp/ag-tpl/Mdoc.pm stable/9/contrib/ntp/sntp/ag-tpl/mdoc2man - copied unchanged from r285170, head/contrib/ntp/sntp/ag-tpl/mdoc2man stable/9/contrib/ntp/sntp/check-libntp.mf - copied unchanged from r280849, head/contrib/ntp/sntp/check-libntp.mf stable/9/contrib/ntp/sntp/check-libopts.mf - copied unchanged from r280849, head/contrib/ntp/sntp/check-libopts.mf stable/9/contrib/ntp/sntp/crypto.c - copied unchanged from r280849, head/contrib/ntp/sntp/crypto.c stable/9/contrib/ntp/sntp/crypto.h - copied unchanged from r280849, head/contrib/ntp/sntp/crypto.h stable/9/contrib/ntp/sntp/data_formats.h - copied unchanged from r280849, head/contrib/ntp/sntp/data_formats.h stable/9/contrib/ntp/sntp/deps-ver - copied unchanged from r280849, head/contrib/ntp/sntp/deps-ver stable/9/contrib/ntp/sntp/depsver.mf - copied unchanged from r280849, head/contrib/ntp/sntp/depsver.mf stable/9/contrib/ntp/sntp/include/ - copied from r280849, head/contrib/ntp/sntp/include/ stable/9/contrib/ntp/sntp/includes.mf - copied unchanged from r280849, head/contrib/ntp/sntp/includes.mf stable/9/contrib/ntp/sntp/invoke-sntp.menu - copied unchanged from r280849, head/contrib/ntp/sntp/invoke-sntp.menu stable/9/contrib/ntp/sntp/invoke-sntp.texi - copied, changed from r280849, head/contrib/ntp/sntp/invoke-sntp.texi stable/9/contrib/ntp/sntp/kod_management.c - copied, changed from r280849, head/contrib/ntp/sntp/kod_management.c stable/9/contrib/ntp/sntp/kod_management.h - copied unchanged from r280849, head/contrib/ntp/sntp/kod_management.h stable/9/contrib/ntp/sntp/libevent/ - copied from r280849, head/contrib/ntp/sntp/libevent/ stable/9/contrib/ntp/sntp/libevent/build-aux/ar-lib - copied unchanged from r285170, head/contrib/ntp/sntp/libevent/build-aux/ar-lib stable/9/contrib/ntp/sntp/libevent/build-aux/test-driver - copied unchanged from r285170, head/contrib/ntp/sntp/libevent/build-aux/test-driver stable/9/contrib/ntp/sntp/libevent/m4/acx_pthread.m4 - copied unchanged from r282408, head/contrib/ntp/sntp/libevent/m4/acx_pthread.m4 stable/9/contrib/ntp/sntp/libopts/COPYING.gplv3 - copied, changed from r280849, head/contrib/ntp/sntp/libopts/COPYING.gplv3 stable/9/contrib/ntp/sntp/libopts/COPYING.lgplv3 - copied, changed from r280849, head/contrib/ntp/sntp/libopts/COPYING.lgplv3 stable/9/contrib/ntp/sntp/libopts/ag-char-map.h - copied, changed from r280849, head/contrib/ntp/sntp/libopts/ag-char-map.h stable/9/contrib/ntp/sntp/libopts/alias.c - copied, changed from r280849, head/contrib/ntp/sntp/libopts/alias.c stable/9/contrib/ntp/sntp/libopts/ao-strs.c - copied, changed from r280849, head/contrib/ntp/sntp/libopts/ao-strs.c stable/9/contrib/ntp/sntp/libopts/ao-strs.h - copied, changed from r280849, head/contrib/ntp/sntp/libopts/ao-strs.h stable/9/contrib/ntp/sntp/libopts/autoopts/project.h - copied, changed from r280849, head/contrib/ntp/sntp/libopts/autoopts/project.h stable/9/contrib/ntp/sntp/libopts/check.c - copied, changed from r280849, head/contrib/ntp/sntp/libopts/check.c stable/9/contrib/ntp/sntp/libopts/compat/_Noreturn.h - copied unchanged from r280849, head/contrib/ntp/sntp/libopts/compat/_Noreturn.h stable/9/contrib/ntp/sntp/libopts/enum.c - copied, changed from r280849, head/contrib/ntp/sntp/libopts/enum.c stable/9/contrib/ntp/sntp/libopts/env.c - copied, changed from r280849, head/contrib/ntp/sntp/libopts/env.c stable/9/contrib/ntp/sntp/libopts/file.c - copied, changed from r280849, head/contrib/ntp/sntp/libopts/file.c stable/9/contrib/ntp/sntp/libopts/find.c - copied, changed from r280849, head/contrib/ntp/sntp/libopts/find.c stable/9/contrib/ntp/sntp/libopts/gettext.h - copied, changed from r280849, head/contrib/ntp/sntp/libopts/gettext.h stable/9/contrib/ntp/sntp/libopts/init.c - copied, changed from r280849, head/contrib/ntp/sntp/libopts/init.c stable/9/contrib/ntp/sntp/libopts/intprops.h - copied, changed from r280849, head/contrib/ntp/sntp/libopts/intprops.h stable/9/contrib/ntp/sntp/libopts/m4/stdnoreturn.m4 - copied, changed from r280849, head/contrib/ntp/sntp/libopts/m4/stdnoreturn.m4 stable/9/contrib/ntp/sntp/libopts/option-value-type.c - copied, changed from r280849, head/contrib/ntp/sntp/libopts/option-value-type.c stable/9/contrib/ntp/sntp/libopts/option-value-type.h - copied, changed from r280849, head/contrib/ntp/sntp/libopts/option-value-type.h stable/9/contrib/ntp/sntp/libopts/option-xat-attribute.c - copied, changed from r280849, head/contrib/ntp/sntp/libopts/option-xat-attribute.c stable/9/contrib/ntp/sntp/libopts/option-xat-attribute.h - copied, changed from r280849, head/contrib/ntp/sntp/libopts/option-xat-attribute.h stable/9/contrib/ntp/sntp/libopts/parse-duration.c - copied, changed from r280849, head/contrib/ntp/sntp/libopts/parse-duration.c stable/9/contrib/ntp/sntp/libopts/parse-duration.h - copied, changed from r280849, head/contrib/ntp/sntp/libopts/parse-duration.h stable/9/contrib/ntp/sntp/libopts/reset.c - copied, changed from r280849, head/contrib/ntp/sntp/libopts/reset.c stable/9/contrib/ntp/sntp/libopts/stdnoreturn.in.h - copied, changed from r280849, head/contrib/ntp/sntp/libopts/stdnoreturn.in.h stable/9/contrib/ntp/sntp/libopts/time.c - copied, changed from r280849, head/contrib/ntp/sntp/libopts/time.c stable/9/contrib/ntp/sntp/libpkgver/ - copied from r285170, head/contrib/ntp/sntp/libpkgver/ stable/9/contrib/ntp/sntp/loc/ - copied from r280849, head/contrib/ntp/sntp/loc/ stable/9/contrib/ntp/sntp/log.c - copied, changed from r280849, head/contrib/ntp/sntp/log.c stable/9/contrib/ntp/sntp/log.h - copied, changed from r280849, head/contrib/ntp/sntp/log.h stable/9/contrib/ntp/sntp/m4/ - copied from r280849, head/contrib/ntp/sntp/m4/ stable/9/contrib/ntp/sntp/m4/ax_c99_struct_init.m4 - copied unchanged from r282408, head/contrib/ntp/sntp/m4/ax_c99_struct_init.m4 stable/9/contrib/ntp/sntp/m4/ntp_problemtests.m4 - copied unchanged from r289764, head/contrib/ntp/sntp/m4/ntp_problemtests.m4 stable/9/contrib/ntp/sntp/m4/ntp_unitytest.m4 - copied unchanged from r285170, head/contrib/ntp/sntp/m4/ntp_unitytest.m4 stable/9/contrib/ntp/sntp/m4/openldap-thread-check.m4 - copied, changed from r282408, head/contrib/ntp/sntp/m4/openldap-thread-check.m4 stable/9/contrib/ntp/sntp/m4/openldap.m4 - copied unchanged from r282408, head/contrib/ntp/sntp/m4/openldap.m4 stable/9/contrib/ntp/sntp/main.h - copied unchanged from r280849, head/contrib/ntp/sntp/main.h stable/9/contrib/ntp/sntp/networking.c - copied, changed from r280849, head/contrib/ntp/sntp/networking.c stable/9/contrib/ntp/sntp/networking.h - copied unchanged from r280849, head/contrib/ntp/sntp/networking.h stable/9/contrib/ntp/sntp/scm-rev - copied unchanged from r280849, head/contrib/ntp/sntp/scm-rev stable/9/contrib/ntp/sntp/scripts/ - copied from r280849, head/contrib/ntp/sntp/scripts/ stable/9/contrib/ntp/sntp/sntp.1sntpman - copied, changed from r280849, head/contrib/ntp/sntp/sntp.1sntpman stable/9/contrib/ntp/sntp/sntp.1sntpmdoc - copied, changed from r280849, head/contrib/ntp/sntp/sntp.1sntpmdoc stable/9/contrib/ntp/sntp/sntp.c - copied unchanged from r280849, head/contrib/ntp/sntp/sntp.c stable/9/contrib/ntp/sntp/sntp.html - copied, changed from r280849, head/contrib/ntp/sntp/sntp.html stable/9/contrib/ntp/sntp/sntp.man.in - copied, changed from r280849, head/contrib/ntp/sntp/sntp.man.in stable/9/contrib/ntp/sntp/sntp.mdoc.in - copied, changed from r280849, head/contrib/ntp/sntp/sntp.mdoc.in stable/9/contrib/ntp/sntp/sntp.texi - copied unchanged from r280849, head/contrib/ntp/sntp/sntp.texi stable/9/contrib/ntp/sntp/tests/ - copied from r280849, head/contrib/ntp/sntp/tests/ stable/9/contrib/ntp/sntp/tests/crypto.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/crypto.c stable/9/contrib/ntp/sntp/tests/fileHandlingTest.c - copied unchanged from r289764, head/contrib/ntp/sntp/tests/fileHandlingTest.c stable/9/contrib/ntp/sntp/tests/fileHandlingTest.h.in (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/fileHandlingTest.h.in stable/9/contrib/ntp/sntp/tests/keyFile.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/keyFile.c stable/9/contrib/ntp/sntp/tests/kodDatabase.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/kodDatabase.c stable/9/contrib/ntp/sntp/tests/kodFile.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/kodFile.c - copied unchanged from r285170, head/contrib/ntp/sntp/tests/networking.c stable/9/contrib/ntp/sntp/tests/packetHandling.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/packetHandling.c stable/9/contrib/ntp/sntp/tests/packetProcessing.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/packetProcessing.c stable/9/contrib/ntp/sntp/tests/run-crypto.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/run-crypto.c stable/9/contrib/ntp/sntp/tests/run-keyFile.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/run-keyFile.c stable/9/contrib/ntp/sntp/tests/run-kodDatabase.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/run-kodDatabase.c stable/9/contrib/ntp/sntp/tests/run-kodFile.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/run-kodFile.c stable/9/contrib/ntp/sntp/tests/run-networking.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/run-networking.c stable/9/contrib/ntp/sntp/tests/run-packetHandling.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/run-packetHandling.c stable/9/contrib/ntp/sntp/tests/run-packetProcessing.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/run-packetProcessing.c stable/9/contrib/ntp/sntp/tests/run-t-log.c - copied unchanged from r289764, head/contrib/ntp/sntp/tests/run-t-log.c stable/9/contrib/ntp/sntp/tests/run-utilities.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/run-utilities.c stable/9/contrib/ntp/sntp/tests/sntptest.c - copied unchanged from r289764, head/contrib/ntp/sntp/tests/sntptest.c stable/9/contrib/ntp/sntp/tests/t-log.c - copied unchanged from r289764, head/contrib/ntp/sntp/tests/t-log.c stable/9/contrib/ntp/sntp/tests/utilities.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/tests/utilities.c stable/9/contrib/ntp/sntp/unity/ - copied from r285170, head/contrib/ntp/sntp/unity/ stable/9/contrib/ntp/sntp/unity/auto/parseOutput.rb - copied unchanged from r289764, head/contrib/ntp/sntp/unity/auto/parseOutput.rb stable/9/contrib/ntp/sntp/unity/auto/type_sanitizer.rb - copied unchanged from r289764, head/contrib/ntp/sntp/unity/auto/type_sanitizer.rb stable/9/contrib/ntp/sntp/unity/auto/unity_test_summary.py - copied unchanged from r289764, head/contrib/ntp/sntp/unity/auto/unity_test_summary.py stable/9/contrib/ntp/sntp/unity/unity_config.h - copied unchanged from r289764, head/contrib/ntp/sntp/unity/unity_config.h stable/9/contrib/ntp/sntp/utilities.c - copied unchanged from r280849, head/contrib/ntp/sntp/utilities.c stable/9/contrib/ntp/sntp/utilities.h - copied unchanged from r280849, head/contrib/ntp/sntp/utilities.h stable/9/contrib/ntp/sntp/version.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/sntp/version.c stable/9/contrib/ntp/tests/ - copied from r280849, head/contrib/ntp/tests/ stable/9/contrib/ntp/tests/bug-2803/ - copied from r285170, head/contrib/ntp/tests/bug-2803/ stable/9/contrib/ntp/tests/libntp/a_md5encrypt.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/a_md5encrypt.c stable/9/contrib/ntp/tests/libntp/atoint.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/atoint.c stable/9/contrib/ntp/tests/libntp/atouint.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/atouint.c stable/9/contrib/ntp/tests/libntp/authkeys.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/authkeys.c stable/9/contrib/ntp/tests/libntp/buftvtots.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/buftvtots.c stable/9/contrib/ntp/tests/libntp/calendar.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/calendar.c stable/9/contrib/ntp/tests/libntp/caljulian.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/caljulian.c stable/9/contrib/ntp/tests/libntp/caltontp.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/caltontp.c stable/9/contrib/ntp/tests/libntp/calyearstart.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/calyearstart.c stable/9/contrib/ntp/tests/libntp/clocktime.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/clocktime.c stable/9/contrib/ntp/tests/libntp/decodenetnum.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/decodenetnum.c stable/9/contrib/ntp/tests/libntp/hextoint.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/hextoint.c stable/9/contrib/ntp/tests/libntp/hextolfp.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/hextolfp.c stable/9/contrib/ntp/tests/libntp/humandate.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/humandate.c stable/9/contrib/ntp/tests/libntp/lfpfunc.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/lfpfunc.c stable/9/contrib/ntp/tests/libntp/lfptest.c - copied unchanged from r289764, head/contrib/ntp/tests/libntp/lfptest.c stable/9/contrib/ntp/tests/libntp/lfptostr.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/lfptostr.c stable/9/contrib/ntp/tests/libntp/modetoa.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/modetoa.c stable/9/contrib/ntp/tests/libntp/msyslog.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/msyslog.c stable/9/contrib/ntp/tests/libntp/netof.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/netof.c stable/9/contrib/ntp/tests/libntp/numtoa.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/numtoa.c stable/9/contrib/ntp/tests/libntp/numtohost.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/numtohost.c stable/9/contrib/ntp/tests/libntp/octtoint.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/octtoint.c stable/9/contrib/ntp/tests/libntp/prettydate.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/prettydate.c stable/9/contrib/ntp/tests/libntp/recvbuff.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/recvbuff.c stable/9/contrib/ntp/tests/libntp/refidsmear.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/refidsmear.c stable/9/contrib/ntp/tests/libntp/refnumtoa.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/refnumtoa.c stable/9/contrib/ntp/tests/libntp/run-a_md5encrypt.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-a_md5encrypt.c stable/9/contrib/ntp/tests/libntp/run-atoint.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-atoint.c stable/9/contrib/ntp/tests/libntp/run-atouint.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-atouint.c stable/9/contrib/ntp/tests/libntp/run-authkeys.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-authkeys.c stable/9/contrib/ntp/tests/libntp/run-buftvtots.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-buftvtots.c stable/9/contrib/ntp/tests/libntp/run-calendar.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-calendar.c stable/9/contrib/ntp/tests/libntp/run-caljulian.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-caljulian.c stable/9/contrib/ntp/tests/libntp/run-caltontp.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-caltontp.c stable/9/contrib/ntp/tests/libntp/run-calyearstart.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-calyearstart.c stable/9/contrib/ntp/tests/libntp/run-clocktime.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-clocktime.c stable/9/contrib/ntp/tests/libntp/run-decodenetnum.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-decodenetnum.c stable/9/contrib/ntp/tests/libntp/run-hextoint.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-hextoint.c stable/9/contrib/ntp/tests/libntp/run-hextolfp.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-hextolfp.c stable/9/contrib/ntp/tests/libntp/run-humandate.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-humandate.c stable/9/contrib/ntp/tests/libntp/run-lfpfunc.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-lfpfunc.c stable/9/contrib/ntp/tests/libntp/run-lfptostr.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-lfptostr.c stable/9/contrib/ntp/tests/libntp/run-modetoa.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-modetoa.c stable/9/contrib/ntp/tests/libntp/run-msyslog.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-msyslog.c stable/9/contrib/ntp/tests/libntp/run-netof.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-netof.c stable/9/contrib/ntp/tests/libntp/run-numtoa.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-numtoa.c stable/9/contrib/ntp/tests/libntp/run-numtohost.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-numtohost.c stable/9/contrib/ntp/tests/libntp/run-octtoint.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-octtoint.c stable/9/contrib/ntp/tests/libntp/run-prettydate.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-prettydate.c stable/9/contrib/ntp/tests/libntp/run-recvbuff.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-recvbuff.c stable/9/contrib/ntp/tests/libntp/run-refidsmear.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-refidsmear.c stable/9/contrib/ntp/tests/libntp/run-refnumtoa.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-refnumtoa.c stable/9/contrib/ntp/tests/libntp/run-sfptostr.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-sfptostr.c stable/9/contrib/ntp/tests/libntp/run-socktoa.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-socktoa.c stable/9/contrib/ntp/tests/libntp/run-ssl_init.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-ssl_init.c stable/9/contrib/ntp/tests/libntp/run-statestr.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-statestr.c stable/9/contrib/ntp/tests/libntp/run-strtolfp.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-strtolfp.c stable/9/contrib/ntp/tests/libntp/run-timespecops.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-timespecops.c stable/9/contrib/ntp/tests/libntp/run-timevalops.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-timevalops.c stable/9/contrib/ntp/tests/libntp/run-tstotv.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-tstotv.c stable/9/contrib/ntp/tests/libntp/run-tvtots.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-tvtots.c stable/9/contrib/ntp/tests/libntp/run-uglydate.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-uglydate.c stable/9/contrib/ntp/tests/libntp/run-vi64ops.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-vi64ops.c stable/9/contrib/ntp/tests/libntp/run-ymd2yd.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/run-ymd2yd.c stable/9/contrib/ntp/tests/libntp/sfptostr.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/sfptostr.c stable/9/contrib/ntp/tests/libntp/sockaddrtest.c - copied unchanged from r289764, head/contrib/ntp/tests/libntp/sockaddrtest.c stable/9/contrib/ntp/tests/libntp/socktoa.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/socktoa.c stable/9/contrib/ntp/tests/libntp/ssl_init.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/ssl_init.c stable/9/contrib/ntp/tests/libntp/statestr.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/statestr.c stable/9/contrib/ntp/tests/libntp/strtolfp.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/strtolfp.c stable/9/contrib/ntp/tests/libntp/test-libntp.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/test-libntp.c stable/9/contrib/ntp/tests/libntp/test-libntp.h (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/test-libntp.h stable/9/contrib/ntp/tests/libntp/timespecops.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/timespecops.c stable/9/contrib/ntp/tests/libntp/timevalops.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/timevalops.c stable/9/contrib/ntp/tests/libntp/tstotv.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/tstotv.c stable/9/contrib/ntp/tests/libntp/tvtots.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/tvtots.c stable/9/contrib/ntp/tests/libntp/uglydate.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/uglydate.c stable/9/contrib/ntp/tests/libntp/vi64ops.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/vi64ops.c stable/9/contrib/ntp/tests/libntp/ymd2yd.c (contents, props changed) - copied, changed from r285170, head/contrib/ntp/tests/libntp/ymd2yd.c stable/9/contrib/ntp/tests/ntpd/leapsec.c - copied unchanged from r289764, head/contrib/ntp/tests/ntpd/leapsec.c stable/9/contrib/ntp/tests/ntpd/ntp_prio_q.c - copied unchanged from r289764, head/contrib/ntp/tests/ntpd/ntp_prio_q.c stable/9/contrib/ntp/tests/ntpd/ntp_restrict.c - copied unchanged from r289764, head/contrib/ntp/tests/ntpd/ntp_restrict.c stable/9/contrib/ntp/tests/ntpd/rc_cmdlength.c - copied unchanged from r289764, head/contrib/ntp/tests/ntpd/rc_cmdlength.c stable/9/contrib/ntp/tests/ntpd/run-leapsec.c - copied unchanged from r289764, head/contrib/ntp/tests/ntpd/run-leapsec.c stable/9/contrib/ntp/tests/ntpd/run-ntp_prio_q.c - copied unchanged from r289764, head/contrib/ntp/tests/ntpd/run-ntp_prio_q.c stable/9/contrib/ntp/tests/ntpd/run-ntp_restrict.c - copied unchanged from r289764, head/contrib/ntp/tests/ntpd/run-ntp_restrict.c stable/9/contrib/ntp/tests/ntpd/run-rc_cmdlength.c - copied unchanged from r289764, head/contrib/ntp/tests/ntpd/run-rc_cmdlength.c stable/9/contrib/ntp/tests/ntpd/run-t-ntp_scanner.c - copied unchanged from r289764, head/contrib/ntp/tests/ntpd/run-t-ntp_scanner.c stable/9/contrib/ntp/tests/ntpd/run-t-ntp_signd.c - copied unchanged from r289764, head/contrib/ntp/tests/ntpd/run-t-ntp_signd.c stable/9/contrib/ntp/tests/ntpd/t-ntp_scanner.c - copied unchanged from r289764, head/contrib/ntp/tests/ntpd/t-ntp_scanner.c stable/9/contrib/ntp/tests/ntpd/t-ntp_signd.c - copied unchanged from r289764, head/contrib/ntp/tests/ntpd/t-ntp_signd.c stable/9/contrib/ntp/tests/ntpq/ - copied from r289764, head/contrib/ntp/tests/ntpq/ stable/9/contrib/ntp/tests/sandbox/ - copied from r285170, head/contrib/ntp/tests/sandbox/ stable/9/contrib/ntp/tests/sec-2853/ - copied from r285170, head/contrib/ntp/tests/sec-2853/ stable/9/contrib/ntp/util/invoke-ntp-keygen.menu - copied unchanged from r280849, head/contrib/ntp/util/invoke-ntp-keygen.menu stable/9/contrib/ntp/util/invoke-ntp-keygen.texi - copied, changed from r280849, head/contrib/ntp/util/invoke-ntp-keygen.texi stable/9/contrib/ntp/util/ntp-keygen.1ntp-keygenman - copied, changed from r280849, head/contrib/ntp/util/ntp-keygen.1ntp-keygenman stable/9/contrib/ntp/util/ntp-keygen.1ntp-keygenmdoc - copied, changed from r280849, head/contrib/ntp/util/ntp-keygen.1ntp-keygenmdoc stable/9/contrib/ntp/util/ntp-keygen.html - copied, changed from r280849, head/contrib/ntp/util/ntp-keygen.html stable/9/contrib/ntp/util/ntp-keygen.man.in - copied, changed from r280849, head/contrib/ntp/util/ntp-keygen.man.in stable/9/contrib/ntp/util/ntp-keygen.mdoc.in - copied, changed from r280849, head/contrib/ntp/util/ntp-keygen.mdoc.in stable/9/contrib/ntp/util/ntp-keygen.texi - copied unchanged from r280849, head/contrib/ntp/util/ntp-keygen.texi stable/9/contrib/ntp/util/tg2.c - copied unchanged from r280849, head/contrib/ntp/util/tg2.c stable/9/contrib/ntp/ylwrap - copied unchanged from r280849, head/contrib/ntp/ylwrap stable/9/include/stdalign.h - copied unchanged from r228879, head/include/stdalign.h stable/9/include/stdnoreturn.h - copied, changed from r228879, head/include/stdnoreturn.h stable/9/usr.sbin/ntp/doc/drivers/ - copied from r280849, head/usr.sbin/ntp/doc/drivers/ stable/9/usr.sbin/ntp/doc/hints/ - copied from r280849, head/usr.sbin/ntp/doc/hints/ stable/9/usr.sbin/ntp/doc/icons/ - copied from r280849, head/usr.sbin/ntp/doc/icons/ stable/9/usr.sbin/ntp/doc/pic/ - copied from r280849, head/usr.sbin/ntp/doc/pic/ stable/9/usr.sbin/ntp/doc/scripts/ - copied from r280849, head/usr.sbin/ntp/doc/scripts/ stable/9/usr.sbin/ntp/doc/sntp.8 - copied, changed from r280849, head/usr.sbin/ntp/doc/sntp.8 stable/9/usr.sbin/ntp/libntpevent/ - copied from r280849, head/usr.sbin/ntp/libntpevent/ stable/9/usr.sbin/ntp/ntpdc/nl.c - copied unchanged from r280849, head/usr.sbin/ntp/ntpdc/nl.c Directory Properties: stable/9/contrib/ntp/html/drivers/driver40-ja.html (props changed) stable/9/contrib/ntp/include/refidsmear.h (props changed) stable/9/contrib/ntp/libntp/refidsmear.c (props changed) stable/9/contrib/ntp/scripts/update-leap/update-leap.in (props changed) stable/9/contrib/ntp/scripts/update-leap/update-leap.sh (props changed) stable/9/contrib/ntp/sntp/ag-tpl/Mdoc.pm (props changed) stable/9/contrib/ntp/sntp/tests/networking.c (props changed) Deleted: stable/9/contrib/ntp/arlib/ stable/9/contrib/ntp/clockstuff/clktest.c stable/9/contrib/ntp/excludes stable/9/contrib/ntp/html/build/ stable/9/contrib/ntp/html/drivers/driver2.html stable/9/contrib/ntp/html/gadget.html stable/9/contrib/ntp/html/groups.html stable/9/contrib/ntp/html/ldisc.html stable/9/contrib/ntp/html/manyopt.html stable/9/contrib/ntp/html/measure.html stable/9/contrib/ntp/html/mx4200data.html stable/9/contrib/ntp/html/notes.html stable/9/contrib/ntp/html/scripts/links10.txt stable/9/contrib/ntp/html/scripts/links11.txt stable/9/contrib/ntp/html/scripts/links12.txt stable/9/contrib/ntp/html/scripts/links7.txt stable/9/contrib/ntp/html/scripts/links8.txt stable/9/contrib/ntp/html/scripts/links9.txt stable/9/contrib/ntp/include/autogen-version.def stable/9/contrib/ntp/include/copyright.def stable/9/contrib/ntp/include/debug-opt.def stable/9/contrib/ntp/include/global.h stable/9/contrib/ntp/include/homerc.def stable/9/contrib/ntp/include/isc/app.h stable/9/contrib/ntp/include/isc/assertions.h stable/9/contrib/ntp/include/isc/boolean.h stable/9/contrib/ntp/include/isc/buffer.h stable/9/contrib/ntp/include/isc/error.h stable/9/contrib/ntp/include/isc/formatcheck.h stable/9/contrib/ntp/include/isc/int.h stable/9/contrib/ntp/include/isc/interfaceiter.h stable/9/contrib/ntp/include/isc/ipv6.h stable/9/contrib/ntp/include/isc/lang.h stable/9/contrib/ntp/include/isc/lib.h stable/9/contrib/ntp/include/isc/list.h stable/9/contrib/ntp/include/isc/magic.h stable/9/contrib/ntp/include/isc/msgcat.h stable/9/contrib/ntp/include/isc/msgs.h stable/9/contrib/ntp/include/isc/mutex.h stable/9/contrib/ntp/include/isc/net.h stable/9/contrib/ntp/include/isc/netaddr.h stable/9/contrib/ntp/include/isc/netscope.h stable/9/contrib/ntp/include/isc/offset.h stable/9/contrib/ntp/include/isc/once.h stable/9/contrib/ntp/include/isc/platform.h stable/9/contrib/ntp/include/isc/print.h stable/9/contrib/ntp/include/isc/region.h stable/9/contrib/ntp/include/isc/result.h stable/9/contrib/ntp/include/isc/sockaddr.h stable/9/contrib/ntp/include/isc/strerror.h stable/9/contrib/ntp/include/isc/string.h stable/9/contrib/ntp/include/isc/types.h stable/9/contrib/ntp/include/isc/util.h stable/9/contrib/ntp/include/ntp_sprintf.h stable/9/contrib/ntp/include/rsa_md5.h stable/9/contrib/ntp/include/version.def stable/9/contrib/ntp/kernel/README stable/9/contrib/ntp/kernel/chuinit.c stable/9/contrib/ntp/kernel/clkinit.c stable/9/contrib/ntp/kernel/sys/chudefs.h stable/9/contrib/ntp/kernel/sys/clkdefs.h stable/9/contrib/ntp/kernel/tty_chu.c stable/9/contrib/ntp/kernel/tty_chu_STREAMS.c stable/9/contrib/ntp/kernel/tty_clk.c stable/9/contrib/ntp/kernel/tty_clk_STREAMS.c stable/9/contrib/ntp/libisc/ stable/9/contrib/ntp/libntp/fptoa.c stable/9/contrib/ntp/libntp/fptoms.c stable/9/contrib/ntp/libntp/inttoa.c stable/9/contrib/ntp/libntp/lib_strbuf.h stable/9/contrib/ntp/libntp/md5c.c stable/9/contrib/ntp/libntp/memmove.c stable/9/contrib/ntp/libntp/mfptoa.c stable/9/contrib/ntp/libntp/mfptoms.c stable/9/contrib/ntp/libntp/msutotsf.c stable/9/contrib/ntp/libntp/strerror.c stable/9/contrib/ntp/libntp/strstr.c stable/9/contrib/ntp/libntp/tsftomsu.c stable/9/contrib/ntp/libntp/tstotv.c stable/9/contrib/ntp/libntp/tvtoa.c stable/9/contrib/ntp/libntp/tvtots.c stable/9/contrib/ntp/libntp/uinttoa.c stable/9/contrib/ntp/libntp/utvtoa.c stable/9/contrib/ntp/libopts/ stable/9/contrib/ntp/m4/ stable/9/contrib/ntp/ntpd/ntp_intres.c stable/9/contrib/ntp/ntpd/ntpd-opts.menu stable/9/contrib/ntp/ntpd/ntpd-opts.texi stable/9/contrib/ntp/ntpd/ntpd.1 stable/9/contrib/ntp/ntpd/ntpdsim-opts.c stable/9/contrib/ntp/ntpd/ntpdsim-opts.def stable/9/contrib/ntp/ntpd/ntpdsim-opts.h stable/9/contrib/ntp/ntpd/ntpdsim-opts.menu stable/9/contrib/ntp/ntpd/ntpdsim-opts.texi stable/9/contrib/ntp/ntpd/ntpdsim.1 stable/9/contrib/ntp/ntpd/refclock_trak.c stable/9/contrib/ntp/ntpdate/ntptime_config.c stable/9/contrib/ntp/ntpdate/ntptimeset.c stable/9/contrib/ntp/ntpdc/ntpdc-opts.menu stable/9/contrib/ntp/ntpdc/ntpdc-opts.texi stable/9/contrib/ntp/ntpdc/ntpdc.1 stable/9/contrib/ntp/ntpq/ntpq-opts.menu stable/9/contrib/ntp/ntpq/ntpq-opts.texi stable/9/contrib/ntp/ntpq/ntpq.1 stable/9/contrib/ntp/scripts/VersionName stable/9/contrib/ntp/scripts/calc_tickadj.in stable/9/contrib/ntp/scripts/checktime.in stable/9/contrib/ntp/scripts/fixautomakedepsmagic stable/9/contrib/ntp/scripts/freq_adj.in stable/9/contrib/ntp/scripts/genCommitLog stable/9/contrib/ntp/scripts/genver stable/9/contrib/ntp/scripts/hpadjtime.sh stable/9/contrib/ntp/scripts/html2man.in stable/9/contrib/ntp/scripts/mkver.in stable/9/contrib/ntp/scripts/ntp-close stable/9/contrib/ntp/scripts/ntp-groper stable/9/contrib/ntp/scripts/ntp-restart stable/9/contrib/ntp/scripts/ntp-status stable/9/contrib/ntp/scripts/ntp-wait.in stable/9/contrib/ntp/scripts/ntpsweep.in stable/9/contrib/ntp/scripts/ntptrace.in stable/9/contrib/ntp/scripts/rc1/ stable/9/contrib/ntp/scripts/rc2/ stable/9/contrib/ntp/scripts/update-leap/update-leap stable/9/contrib/ntp/sntp/README stable/9/contrib/ntp/sntp/autogen-version.def stable/9/contrib/ntp/sntp/header.h stable/9/contrib/ntp/sntp/internet.c stable/9/contrib/ntp/sntp/internet.h stable/9/contrib/ntp/sntp/kludges.h stable/9/contrib/ntp/sntp/libevent/README stable/9/contrib/ntp/sntp/libevent/m4/openldap-thread-check.m4 stable/9/contrib/ntp/sntp/libevent/m4/openldap.m4 stable/9/contrib/ntp/sntp/libevent/sample/ stable/9/contrib/ntp/sntp/libopts/COPYING.lgpl stable/9/contrib/ntp/sntp/libopts/enumeration.c stable/9/contrib/ntp/sntp/libopts/environment.c stable/9/contrib/ntp/sntp/sntp-opts.menu stable/9/contrib/ntp/sntp/sntp-opts.texi stable/9/contrib/ntp/sntp/sntp.1 stable/9/contrib/ntp/sntp/socket.c stable/9/contrib/ntp/sntp/tests/crypto.cpp stable/9/contrib/ntp/sntp/tests/fileHandlingTest.h stable/9/contrib/ntp/sntp/tests/keyFile.cpp stable/9/contrib/ntp/sntp/tests/kodDatabase.cpp stable/9/contrib/ntp/sntp/tests/kodFile.cpp stable/9/contrib/ntp/sntp/tests/networking.cpp stable/9/contrib/ntp/sntp/tests/packetHandling.cpp stable/9/contrib/ntp/sntp/tests/packetProcessing.cpp stable/9/contrib/ntp/sntp/tests/utilities.cpp stable/9/contrib/ntp/sntp/timing.c stable/9/contrib/ntp/sntp/unix.c stable/9/contrib/ntp/sntp/version.def stable/9/contrib/ntp/tests/libntp/a_md5encrypt.cpp stable/9/contrib/ntp/tests/libntp/atoint.cpp stable/9/contrib/ntp/tests/libntp/atouint.cpp stable/9/contrib/ntp/tests/libntp/authkeys.cpp stable/9/contrib/ntp/tests/libntp/buftvtots.cpp stable/9/contrib/ntp/tests/libntp/calendar.cpp stable/9/contrib/ntp/tests/libntp/caljulian.cpp stable/9/contrib/ntp/tests/libntp/caltontp.cpp stable/9/contrib/ntp/tests/libntp/calyearstart.cpp stable/9/contrib/ntp/tests/libntp/clocktime.cpp stable/9/contrib/ntp/tests/libntp/decodenetnum.cpp stable/9/contrib/ntp/tests/libntp/hextoint.cpp stable/9/contrib/ntp/tests/libntp/hextolfp.cpp stable/9/contrib/ntp/tests/libntp/humandate.cpp stable/9/contrib/ntp/tests/libntp/lfpfunc.cpp stable/9/contrib/ntp/tests/libntp/lfptostr.cpp stable/9/contrib/ntp/tests/libntp/libntptest.cpp stable/9/contrib/ntp/tests/libntp/libntptest.h stable/9/contrib/ntp/tests/libntp/modetoa.cpp stable/9/contrib/ntp/tests/libntp/msyslog.cpp stable/9/contrib/ntp/tests/libntp/netof.cpp stable/9/contrib/ntp/tests/libntp/numtoa.cpp stable/9/contrib/ntp/tests/libntp/numtohost.cpp stable/9/contrib/ntp/tests/libntp/octtoint.cpp stable/9/contrib/ntp/tests/libntp/prettydate.cpp stable/9/contrib/ntp/tests/libntp/recvbuff.cpp stable/9/contrib/ntp/tests/libntp/refnumtoa.cpp stable/9/contrib/ntp/tests/libntp/sfptostr.cpp stable/9/contrib/ntp/tests/libntp/socktoa.cpp stable/9/contrib/ntp/tests/libntp/ssl_init.cpp stable/9/contrib/ntp/tests/libntp/statestr.cpp stable/9/contrib/ntp/tests/libntp/strtolfp.cpp stable/9/contrib/ntp/tests/libntp/timespecops.cpp stable/9/contrib/ntp/tests/libntp/timestructs.cpp stable/9/contrib/ntp/tests/libntp/timestructs.h stable/9/contrib/ntp/tests/libntp/timevalops.cpp stable/9/contrib/ntp/tests/libntp/tstotv.cpp stable/9/contrib/ntp/tests/libntp/tvtots.cpp stable/9/contrib/ntp/tests/libntp/uglydate.cpp stable/9/contrib/ntp/tests/libntp/vi64ops.cpp stable/9/contrib/ntp/tests/libntp/ymd2yd.cpp stable/9/contrib/ntp/tests/ntpd/leapsec.cpp stable/9/contrib/ntp/tests/ntpd/ntpdtest.cpp stable/9/contrib/ntp/tests/ntpd/ntpdtest.h stable/9/contrib/ntp/util/ansi2knr.1 stable/9/contrib/ntp/util/ansi2knr.c stable/9/contrib/ntp/util/jitter.h stable/9/contrib/ntp/util/ntp-keygen-opts.menu stable/9/contrib/ntp/util/ntp-keygen-opts.texi stable/9/contrib/ntp/util/ntp-keygen.1 stable/9/contrib/ntp/version stable/9/contrib/ntp/version.m4 Modified: stable/9/UPDATING stable/9/contrib/ntp/COPYRIGHT (contents, props changed) stable/9/contrib/ntp/ChangeLog (contents, props changed) stable/9/contrib/ntp/CommitLog stable/9/contrib/ntp/Makefile.am (contents, props changed) stable/9/contrib/ntp/Makefile.in (contents, props changed) stable/9/contrib/ntp/NEWS (contents, props changed) stable/9/contrib/ntp/README.hackers (contents, props changed) stable/9/contrib/ntp/WHERE-TO-START (contents, props changed) stable/9/contrib/ntp/aclocal.m4 (contents, props changed) stable/9/contrib/ntp/adjtimed/Makefile.am (contents, props changed) stable/9/contrib/ntp/adjtimed/Makefile.in (contents, props changed) stable/9/contrib/ntp/adjtimed/adjtimed.c (contents, props changed) stable/9/contrib/ntp/bincheck.mf stable/9/contrib/ntp/bootstrap stable/9/contrib/ntp/build (contents, props changed) stable/9/contrib/ntp/clockstuff/Makefile.am (contents, props changed) stable/9/contrib/ntp/clockstuff/Makefile.in (contents, props changed) stable/9/contrib/ntp/clockstuff/README (contents, props changed) stable/9/contrib/ntp/clockstuff/chutest.c (contents, props changed) stable/9/contrib/ntp/clockstuff/propdelay.c (contents, props changed) stable/9/contrib/ntp/conf/beauregard.conf (contents, props changed) stable/9/contrib/ntp/config.guess (contents, props changed) stable/9/contrib/ntp/config.h.in (contents, props changed) stable/9/contrib/ntp/config.sub (contents, props changed) stable/9/contrib/ntp/configure (contents, props changed) stable/9/contrib/ntp/configure.ac stable/9/contrib/ntp/dot.emacs (contents, props changed) stable/9/contrib/ntp/flock-build (contents, props changed) stable/9/contrib/ntp/html/accopt.html (contents, props changed) stable/9/contrib/ntp/html/assoc.html (contents, props changed) stable/9/contrib/ntp/html/audio.html (contents, props changed) stable/9/contrib/ntp/html/authopt.html (contents, props changed) stable/9/contrib/ntp/html/clockopt.html (contents, props changed) stable/9/contrib/ntp/html/confopt.html (contents, props changed) stable/9/contrib/ntp/html/copyright.html (contents, props changed) stable/9/contrib/ntp/html/debug.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver1.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver10.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver11.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver12.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver16.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver18.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver19.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver20.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver22.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver26.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver27.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver28.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver29.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver3.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver30.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver31.html stable/9/contrib/ntp/html/drivers/driver32.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver33.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver34.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver35.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver36.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver37.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver38.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver39.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver4.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver40.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver42.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver43.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver44.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver5.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver6.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver7.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver8.html (contents, props changed) stable/9/contrib/ntp/html/drivers/driver9.html (contents, props changed) stable/9/contrib/ntp/html/drivers/oncore-shmem.html (contents, props changed) stable/9/contrib/ntp/html/drivers/scripts/footer.txt stable/9/contrib/ntp/html/drivers/scripts/style.css stable/9/contrib/ntp/html/drivers/tf582_4.html stable/9/contrib/ntp/html/extern.html (contents, props changed) stable/9/contrib/ntp/html/howto.html (contents, props changed) stable/9/contrib/ntp/html/index.html (contents, props changed) stable/9/contrib/ntp/html/kern.html (contents, props changed) stable/9/contrib/ntp/html/keygen.html (contents, props changed) stable/9/contrib/ntp/html/miscopt.html (contents, props changed) stable/9/contrib/ntp/html/monopt.html (contents, props changed) stable/9/contrib/ntp/html/msyslog.html (contents, props changed) stable/9/contrib/ntp/html/ntp_conf.html stable/9/contrib/ntp/html/ntpd.html (contents, props changed) stable/9/contrib/ntp/html/ntpdate.html (contents, props changed) stable/9/contrib/ntp/html/ntpdc.html (contents, props changed) stable/9/contrib/ntp/html/ntpdsim.html (contents, props changed) stable/9/contrib/ntp/html/ntpdsim_new.html stable/9/contrib/ntp/html/ntpq.html (contents, props changed) stable/9/contrib/ntp/html/ntptime.html (contents, props changed) stable/9/contrib/ntp/html/ntptrace.html (contents, props changed) stable/9/contrib/ntp/html/parsedata.html (contents, props changed) stable/9/contrib/ntp/html/parsenew.html (contents, props changed) stable/9/contrib/ntp/html/pps.html (contents, props changed) stable/9/contrib/ntp/html/prefer.html (contents, props changed) stable/9/contrib/ntp/html/rdebug.html (contents, props changed) stable/9/contrib/ntp/html/refclock.html (contents, props changed) stable/9/contrib/ntp/html/release.html (contents, props changed) stable/9/contrib/ntp/html/scripts/footer.txt (contents, props changed) stable/9/contrib/ntp/html/scripts/style.css (contents, props changed) stable/9/contrib/ntp/html/sntp.html (contents, props changed) stable/9/contrib/ntp/html/tickadj.html (contents, props changed) stable/9/contrib/ntp/include/Makefile.am (contents, props changed) stable/9/contrib/ntp/include/Makefile.in (contents, props changed) stable/9/contrib/ntp/include/audio.h (contents, props changed) stable/9/contrib/ntp/include/binio.h (contents, props changed) stable/9/contrib/ntp/include/icom.h (contents, props changed) stable/9/contrib/ntp/include/ieee754io.h (contents, props changed) stable/9/contrib/ntp/include/iosignal.h (contents, props changed) stable/9/contrib/ntp/include/isc/Makefile.am (contents, props changed) stable/9/contrib/ntp/include/isc/Makefile.in (contents, props changed) stable/9/contrib/ntp/include/isc/mem.h (contents, props changed) stable/9/contrib/ntp/include/l_stdlib.h (contents, props changed) stable/9/contrib/ntp/include/mbg_gps166.h (contents, props changed) stable/9/contrib/ntp/include/ntp.h (contents, props changed) stable/9/contrib/ntp/include/ntp_calendar.h (contents, props changed) stable/9/contrib/ntp/include/ntp_cmdargs.h (contents, props changed) stable/9/contrib/ntp/include/ntp_config.h (contents, props changed) stable/9/contrib/ntp/include/ntp_control.h (contents, props changed) stable/9/contrib/ntp/include/ntp_crypto.h (contents, props changed) stable/9/contrib/ntp/include/ntp_debug.h stable/9/contrib/ntp/include/ntp_filegen.h (contents, props changed) stable/9/contrib/ntp/include/ntp_fp.h (contents, props changed) stable/9/contrib/ntp/include/ntp_io.h (contents, props changed) stable/9/contrib/ntp/include/ntp_machine.h (contents, props changed) stable/9/contrib/ntp/include/ntp_malloc.h (contents, props changed) stable/9/contrib/ntp/include/ntp_md5.h (contents, props changed) stable/9/contrib/ntp/include/ntp_proto.h (contents, props changed) stable/9/contrib/ntp/include/ntp_random.h stable/9/contrib/ntp/include/ntp_refclock.h (contents, props changed) stable/9/contrib/ntp/include/ntp_request.h (contents, props changed) stable/9/contrib/ntp/include/ntp_rfc2553.h (contents, props changed) stable/9/contrib/ntp/include/ntp_select.h (contents, props changed) stable/9/contrib/ntp/include/ntp_stdlib.h (contents, props changed) stable/9/contrib/ntp/include/ntp_string.h (contents, props changed) stable/9/contrib/ntp/include/ntp_syscall.h (contents, props changed) stable/9/contrib/ntp/include/ntp_syslog.h (contents, props changed) stable/9/contrib/ntp/include/ntp_tty.h (contents, props changed) stable/9/contrib/ntp/include/ntp_types.h (contents, props changed) stable/9/contrib/ntp/include/ntp_unixtime.h (contents, props changed) stable/9/contrib/ntp/include/ntpd.h (contents, props changed) stable/9/contrib/ntp/include/ntpsim.h (contents, props changed) stable/9/contrib/ntp/include/parse.h (contents, props changed) stable/9/contrib/ntp/include/parse_conf.h (contents, props changed) stable/9/contrib/ntp/include/recvbuff.h (contents, props changed) stable/9/contrib/ntp/include/timepps-SCO.h stable/9/contrib/ntp/include/timepps-Solaris.h stable/9/contrib/ntp/include/timepps-SunOS.h stable/9/contrib/ntp/include/trimble.h (contents, props changed) stable/9/contrib/ntp/kernel/Makefile.am (contents, props changed) stable/9/contrib/ntp/kernel/Makefile.in (contents, props changed) stable/9/contrib/ntp/kernel/sys/Makefile.am (contents, props changed) stable/9/contrib/ntp/kernel/sys/Makefile.in (contents, props changed) stable/9/contrib/ntp/kernel/sys/parsestreams.h (contents, props changed) stable/9/contrib/ntp/lib/isc/inet_ntop.c stable/9/contrib/ntp/lib/isc/log.c stable/9/contrib/ntp/lib/isc/result.c stable/9/contrib/ntp/lib/isc/unix/file.c stable/9/contrib/ntp/lib/isc/unix/ifiter_getifaddrs.c stable/9/contrib/ntp/lib/isc/unix/ifiter_ioctl.c stable/9/contrib/ntp/lib/isc/unix/net.c stable/9/contrib/ntp/libjsmn/Makefile stable/9/contrib/ntp/libjsmn/README.md stable/9/contrib/ntp/libjsmn/jsmn.c stable/9/contrib/ntp/libjsmn/jsmn.h stable/9/contrib/ntp/libjsmn/jsmn_test.c stable/9/contrib/ntp/libntp/Makefile.am (contents, props changed) stable/9/contrib/ntp/libntp/Makefile.in (contents, props changed) stable/9/contrib/ntp/libntp/a_md5encrypt.c (contents, props changed) stable/9/contrib/ntp/libntp/atoint.c (contents, props changed) stable/9/contrib/ntp/libntp/atolfp.c (contents, props changed) stable/9/contrib/ntp/libntp/atouint.c (contents, props changed) stable/9/contrib/ntp/libntp/audio.c (contents, props changed) stable/9/contrib/ntp/libntp/authkeys.c (contents, props changed) stable/9/contrib/ntp/libntp/authreadkeys.c (contents, props changed) stable/9/contrib/ntp/libntp/authusekey.c (contents, props changed) stable/9/contrib/ntp/libntp/buftvtots.c (contents, props changed) stable/9/contrib/ntp/libntp/caljulian.c (contents, props changed) stable/9/contrib/ntp/libntp/caltontp.c (contents, props changed) stable/9/contrib/ntp/libntp/calyearstart.c (contents, props changed) stable/9/contrib/ntp/libntp/clocktime.c (contents, props changed) stable/9/contrib/ntp/libntp/clocktypes.c (contents, props changed) stable/9/contrib/ntp/libntp/decodenetnum.c (contents, props changed) stable/9/contrib/ntp/libntp/dofptoa.c (contents, props changed) stable/9/contrib/ntp/libntp/dolfptoa.c (contents, props changed) stable/9/contrib/ntp/libntp/emalloc.c (contents, props changed) stable/9/contrib/ntp/libntp/findconfig.c (contents, props changed) stable/9/contrib/ntp/libntp/getopt.c (contents, props changed) stable/9/contrib/ntp/libntp/hextoint.c (contents, props changed) stable/9/contrib/ntp/libntp/hextolfp.c (contents, props changed) stable/9/contrib/ntp/libntp/humandate.c (contents, props changed) stable/9/contrib/ntp/libntp/icom.c (contents, props changed) stable/9/contrib/ntp/libntp/iosignal.c (contents, props changed) stable/9/contrib/ntp/libntp/lib_strbuf.c (contents, props changed) stable/9/contrib/ntp/libntp/machines.c (contents, props changed) stable/9/contrib/ntp/libntp/mktime.c (contents, props changed) stable/9/contrib/ntp/libntp/modetoa.c (contents, props changed) stable/9/contrib/ntp/libntp/mstolfp.c (contents, props changed) stable/9/contrib/ntp/libntp/msyslog.c (contents, props changed) stable/9/contrib/ntp/libntp/netof.c (contents, props changed) stable/9/contrib/ntp/libntp/ntp_random.c stable/9/contrib/ntp/libntp/ntp_rfc2553.c (contents, props changed) stable/9/contrib/ntp/libntp/numtoa.c (contents, props changed) stable/9/contrib/ntp/libntp/numtohost.c (contents, props changed) stable/9/contrib/ntp/libntp/octtoint.c (contents, props changed) stable/9/contrib/ntp/libntp/prettydate.c (contents, props changed) stable/9/contrib/ntp/libntp/recvbuff.c (contents, props changed) stable/9/contrib/ntp/libntp/refnumtoa.c (contents, props changed) stable/9/contrib/ntp/libntp/snprintf.c (contents, props changed) stable/9/contrib/ntp/libntp/socktoa.c (contents, props changed) stable/9/contrib/ntp/libntp/socktohost.c (contents, props changed) stable/9/contrib/ntp/libntp/statestr.c (contents, props changed) stable/9/contrib/ntp/libntp/strdup.c (contents, props changed) stable/9/contrib/ntp/libntp/syssignal.c (contents, props changed) stable/9/contrib/ntp/libntp/systime.c (contents, props changed) stable/9/contrib/ntp/libntp/uglydate.c (contents, props changed) stable/9/contrib/ntp/libntp/ymd2yd.c (contents, props changed) stable/9/contrib/ntp/libparse/Makefile.am (contents, props changed) stable/9/contrib/ntp/libparse/Makefile.in (contents, props changed) stable/9/contrib/ntp/libparse/binio.c stable/9/contrib/ntp/libparse/clk_computime.c (contents, props changed) stable/9/contrib/ntp/libparse/clk_dcf7000.c (contents, props changed) stable/9/contrib/ntp/libparse/clk_hopf6021.c (contents, props changed) stable/9/contrib/ntp/libparse/clk_meinberg.c (contents, props changed) stable/9/contrib/ntp/libparse/clk_rawdcf.c (contents, props changed) stable/9/contrib/ntp/libparse/clk_rcc8000.c (contents, props changed) stable/9/contrib/ntp/libparse/clk_schmid.c (contents, props changed) stable/9/contrib/ntp/libparse/clk_trimtaip.c (contents, props changed) stable/9/contrib/ntp/libparse/clk_trimtsip.c (contents, props changed) stable/9/contrib/ntp/libparse/clk_varitext.c (contents, props changed) stable/9/contrib/ntp/libparse/clk_wharton.c (contents, props changed) stable/9/contrib/ntp/libparse/data_mbg.c (contents, props changed) stable/9/contrib/ntp/libparse/gpstolfp.c stable/9/contrib/ntp/libparse/ieee754io.c stable/9/contrib/ntp/libparse/info_trimble.c (contents, props changed) stable/9/contrib/ntp/libparse/mfp_mul.c stable/9/contrib/ntp/libparse/mkinfo_rcmd.sed (contents, props changed) stable/9/contrib/ntp/libparse/mkinfo_scmd.sed (contents, props changed) stable/9/contrib/ntp/libparse/parse.c (contents, props changed) stable/9/contrib/ntp/libparse/parse_conf.c (contents, props changed) stable/9/contrib/ntp/libparse/parsesolaris.c (contents, props changed) stable/9/contrib/ntp/libparse/parsestreams.c (contents, props changed) stable/9/contrib/ntp/libparse/trim_info.c (contents, props changed) stable/9/contrib/ntp/ltmain.sh stable/9/contrib/ntp/ntpd/Makefile.am (contents, props changed) stable/9/contrib/ntp/ntpd/Makefile.in (contents, props changed) stable/9/contrib/ntp/ntpd/check_y2k.c (contents, props changed) stable/9/contrib/ntp/ntpd/cmd_args.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_config.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_control.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_crypto.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_filegen.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_io.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_loopfilter.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_monitor.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_peer.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_proto.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_refclock.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_request.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_restrict.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_timer.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntp_util.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntpd-opts.c stable/9/contrib/ntp/ntpd/ntpd-opts.def stable/9/contrib/ntp/ntpd/ntpd-opts.h stable/9/contrib/ntp/ntpd/ntpd.c (contents, props changed) stable/9/contrib/ntp/ntpd/ntpdbase-opts.def stable/9/contrib/ntp/ntpd/ntpsim.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_acts.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_arbiter.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_arc.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_as2201.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_atom.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_bancomm.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_chronolog.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_chu.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_conf.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_datum.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_dumbclock.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_fg.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_gpsvme.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_heath.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_hopfpci.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_hopfser.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_hpgps.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_irig.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_jjy.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_jupiter.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_leitch.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_local.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_msfees.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_mx4200.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_neoclock4x.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_nmea.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_oncore.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_palisade.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_palisade.h (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_parse.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_pcf.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_pst.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_ripencc.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_shm.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_tpro.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_true.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_tt560.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_ulink.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_wwv.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_wwvb.c (contents, props changed) stable/9/contrib/ntp/ntpd/refclock_zyfer.c (contents, props changed) stable/9/contrib/ntp/ntpdate/Makefile.am (contents, props changed) stable/9/contrib/ntp/ntpdate/Makefile.in (contents, props changed) stable/9/contrib/ntp/ntpdate/ntpdate.c (contents, props changed) stable/9/contrib/ntp/ntpdate/ntpdate.h (contents, props changed) stable/9/contrib/ntp/ntpdc/Makefile.am (contents, props changed) stable/9/contrib/ntp/ntpdc/Makefile.in (contents, props changed) stable/9/contrib/ntp/ntpdc/layout.std (contents, props changed) stable/9/contrib/ntp/ntpdc/nl.pl (contents, props changed) stable/9/contrib/ntp/ntpdc/nl.pl.in (contents, props changed) stable/9/contrib/ntp/ntpdc/ntpdc-layout.c (contents, props changed) stable/9/contrib/ntp/ntpdc/ntpdc-opts.c stable/9/contrib/ntp/ntpdc/ntpdc-opts.def stable/9/contrib/ntp/ntpdc/ntpdc-opts.h stable/9/contrib/ntp/ntpdc/ntpdc.c (contents, props changed) stable/9/contrib/ntp/ntpdc/ntpdc.h (contents, props changed) stable/9/contrib/ntp/ntpdc/ntpdc_ops.c (contents, props changed) stable/9/contrib/ntp/ntpq/Makefile.am (contents, props changed) stable/9/contrib/ntp/ntpq/Makefile.in (contents, props changed) stable/9/contrib/ntp/ntpq/ntpq-opts.c stable/9/contrib/ntp/ntpq/ntpq-opts.def stable/9/contrib/ntp/ntpq/ntpq-opts.h stable/9/contrib/ntp/ntpq/ntpq-subs.c stable/9/contrib/ntp/ntpq/ntpq.c (contents, props changed) stable/9/contrib/ntp/ntpq/ntpq.h (contents, props changed) stable/9/contrib/ntp/ntpsnmpd/Makefile.in stable/9/contrib/ntp/ntpsnmpd/invoke-ntpsnmpd.texi stable/9/contrib/ntp/ntpsnmpd/ntpsnmpd-opts.c stable/9/contrib/ntp/ntpsnmpd/ntpsnmpd-opts.h stable/9/contrib/ntp/ntpsnmpd/ntpsnmpd.1ntpsnmpdman stable/9/contrib/ntp/ntpsnmpd/ntpsnmpd.1ntpsnmpdmdoc stable/9/contrib/ntp/ntpsnmpd/ntpsnmpd.html stable/9/contrib/ntp/ntpsnmpd/ntpsnmpd.man.in stable/9/contrib/ntp/ntpsnmpd/ntpsnmpd.mdoc.in stable/9/contrib/ntp/packageinfo.sh stable/9/contrib/ntp/parseutil/Makefile.am (contents, props changed) stable/9/contrib/ntp/parseutil/Makefile.in (contents, props changed) stable/9/contrib/ntp/parseutil/dcfd.c (contents, props changed) stable/9/contrib/ntp/parseutil/testdcf.c (contents, props changed) stable/9/contrib/ntp/readme.y2kfixes (contents, props changed) stable/9/contrib/ntp/scripts/Makefile.am (contents, props changed) stable/9/contrib/ntp/scripts/Makefile.in (contents, props changed) stable/9/contrib/ntp/scripts/README (contents, props changed) stable/9/contrib/ntp/scripts/build/Makefile.in stable/9/contrib/ntp/scripts/calc_tickadj/Makefile.in stable/9/contrib/ntp/scripts/calc_tickadj/calc_tickadj.1calc_tickadjman stable/9/contrib/ntp/scripts/calc_tickadj/calc_tickadj.1calc_tickadjmdoc stable/9/contrib/ntp/scripts/calc_tickadj/calc_tickadj.html stable/9/contrib/ntp/scripts/calc_tickadj/calc_tickadj.man.in stable/9/contrib/ntp/scripts/calc_tickadj/calc_tickadj.mdoc.in stable/9/contrib/ntp/scripts/calc_tickadj/invoke-calc_tickadj.texi stable/9/contrib/ntp/scripts/lib/Makefile.in stable/9/contrib/ntp/scripts/lib/NTP/Util.pm stable/9/contrib/ntp/scripts/monitoring/ntp.pl (contents, props changed) stable/9/contrib/ntp/scripts/monitoring/ntptrap (contents, props changed) stable/9/contrib/ntp/scripts/ntp-wait/Makefile.in stable/9/contrib/ntp/scripts/ntp-wait/invoke-ntp-wait.texi stable/9/contrib/ntp/scripts/ntp-wait/ntp-wait-opts stable/9/contrib/ntp/scripts/ntp-wait/ntp-wait.1ntp-waitman stable/9/contrib/ntp/scripts/ntp-wait/ntp-wait.1ntp-waitmdoc stable/9/contrib/ntp/scripts/ntp-wait/ntp-wait.html stable/9/contrib/ntp/scripts/ntp-wait/ntp-wait.man.in stable/9/contrib/ntp/scripts/ntp-wait/ntp-wait.mdoc.in stable/9/contrib/ntp/scripts/ntpsweep/Makefile.in stable/9/contrib/ntp/scripts/ntpsweep/invoke-ntpsweep.texi stable/9/contrib/ntp/scripts/ntpsweep/ntpsweep-opts stable/9/contrib/ntp/scripts/ntpsweep/ntpsweep.1ntpsweepman stable/9/contrib/ntp/scripts/ntpsweep/ntpsweep.1ntpsweepmdoc stable/9/contrib/ntp/scripts/ntpsweep/ntpsweep.html stable/9/contrib/ntp/scripts/ntpsweep/ntpsweep.in stable/9/contrib/ntp/scripts/ntpsweep/ntpsweep.man.in stable/9/contrib/ntp/scripts/ntpsweep/ntpsweep.mdoc.in stable/9/contrib/ntp/scripts/ntptrace/Makefile.in stable/9/contrib/ntp/scripts/ntptrace/invoke-ntptrace.texi stable/9/contrib/ntp/scripts/ntptrace/ntptrace-opts stable/9/contrib/ntp/scripts/ntptrace/ntptrace.1ntptraceman stable/9/contrib/ntp/scripts/ntptrace/ntptrace.1ntptracemdoc stable/9/contrib/ntp/scripts/ntptrace/ntptrace.html stable/9/contrib/ntp/scripts/ntptrace/ntptrace.man.in stable/9/contrib/ntp/scripts/ntptrace/ntptrace.mdoc.in stable/9/contrib/ntp/scripts/ntpver.in (contents, props changed) stable/9/contrib/ntp/scripts/plot_summary.in (contents, props changed) stable/9/contrib/ntp/scripts/summary.in (contents, props changed) stable/9/contrib/ntp/scripts/update-leap/Makefile.am (contents, props changed) stable/9/contrib/ntp/scripts/update-leap/Makefile.in (contents, props changed) stable/9/contrib/ntp/scripts/update-leap/invoke-update-leap.texi stable/9/contrib/ntp/scripts/update-leap/update-leap-opts stable/9/contrib/ntp/scripts/update-leap/update-leap.1update-leapman stable/9/contrib/ntp/scripts/update-leap/update-leap.1update-leapmdoc stable/9/contrib/ntp/scripts/update-leap/update-leap.html (contents, props changed) stable/9/contrib/ntp/scripts/update-leap/update-leap.man.in (contents, props changed) stable/9/contrib/ntp/scripts/update-leap/update-leap.mdoc.in (contents, props changed) stable/9/contrib/ntp/sntp/COPYRIGHT stable/9/contrib/ntp/sntp/Makefile.am (contents, props changed) stable/9/contrib/ntp/sntp/Makefile.in (contents, props changed) stable/9/contrib/ntp/sntp/aclocal.m4 (contents, props changed) stable/9/contrib/ntp/sntp/bincheck.mf stable/9/contrib/ntp/sntp/config.guess (contents, props changed) stable/9/contrib/ntp/sntp/config.h.in stable/9/contrib/ntp/sntp/config.sub (contents, props changed) stable/9/contrib/ntp/sntp/configure (contents, props changed) stable/9/contrib/ntp/sntp/configure.ac (contents, props changed) stable/9/contrib/ntp/sntp/include/Makefile.in stable/9/contrib/ntp/sntp/include/autogen-version.def stable/9/contrib/ntp/sntp/include/version.def stable/9/contrib/ntp/sntp/include/version.texi stable/9/contrib/ntp/sntp/libevent/ChangeLog stable/9/contrib/ntp/sntp/libevent/Makefile.am stable/9/contrib/ntp/sntp/libevent/Makefile.in stable/9/contrib/ntp/sntp/libevent/WIN32-Code/nmake/event2/event-config.h stable/9/contrib/ntp/sntp/libevent/WIN32-Code/tree.h stable/9/contrib/ntp/sntp/libevent/aclocal.m4 stable/9/contrib/ntp/sntp/libevent/buffer.c stable/9/contrib/ntp/sntp/libevent/bufferevent.c stable/9/contrib/ntp/sntp/libevent/bufferevent_async.c stable/9/contrib/ntp/sntp/libevent/bufferevent_filter.c stable/9/contrib/ntp/sntp/libevent/bufferevent_openssl.c stable/9/contrib/ntp/sntp/libevent/bufferevent_pair.c stable/9/contrib/ntp/sntp/libevent/build-aux/ltmain.sh stable/9/contrib/ntp/sntp/libevent/config.h.in stable/9/contrib/ntp/sntp/libevent/configure stable/9/contrib/ntp/sntp/libevent/configure.ac stable/9/contrib/ntp/sntp/libevent/evbuffer-internal.h stable/9/contrib/ntp/sntp/libevent/evdns.c stable/9/contrib/ntp/sntp/libevent/event.c stable/9/contrib/ntp/sntp/libevent/event_tagging.c stable/9/contrib/ntp/sntp/libevent/evrpc-internal.h stable/9/contrib/ntp/sntp/libevent/evthread-internal.h stable/9/contrib/ntp/sntp/libevent/evthread.c stable/9/contrib/ntp/sntp/libevent/evutil.c stable/9/contrib/ntp/sntp/libevent/evutil_time.c stable/9/contrib/ntp/sntp/libevent/ht-internal.h stable/9/contrib/ntp/sntp/libevent/http-internal.h stable/9/contrib/ntp/sntp/libevent/http.c stable/9/contrib/ntp/sntp/libevent/include/event2/buffer.h stable/9/contrib/ntp/sntp/libevent/include/event2/bufferevent.h stable/9/contrib/ntp/sntp/libevent/include/event2/dns.h stable/9/contrib/ntp/sntp/libevent/include/event2/event.h stable/9/contrib/ntp/sntp/libevent/include/event2/http.h stable/9/contrib/ntp/sntp/libevent/include/event2/listener.h stable/9/contrib/ntp/sntp/libevent/include/event2/util.h stable/9/contrib/ntp/sntp/libevent/kqueue.c stable/9/contrib/ntp/sntp/libevent/listener.c stable/9/contrib/ntp/sntp/libevent/m4/ltversion.m4 stable/9/contrib/ntp/sntp/libevent/test/bench_httpclient.c stable/9/contrib/ntp/sntp/libevent/test/include.am stable/9/contrib/ntp/sntp/libevent/test/regress.c stable/9/contrib/ntp/sntp/libevent/test/regress.h stable/9/contrib/ntp/sntp/libevent/test/regress_buffer.c stable/9/contrib/ntp/sntp/libevent/test/regress_bufferevent.c stable/9/contrib/ntp/sntp/libevent/test/regress_dns.c stable/9/contrib/ntp/sntp/libevent/test/regress_finalize.c stable/9/contrib/ntp/sntp/libevent/test/regress_http.c stable/9/contrib/ntp/sntp/libevent/test/regress_main.c stable/9/contrib/ntp/sntp/libevent/test/regress_minheap.c stable/9/contrib/ntp/sntp/libevent/test/regress_ssl.c stable/9/contrib/ntp/sntp/libevent/test/regress_thread.c stable/9/contrib/ntp/sntp/libevent/test/regress_util.c stable/9/contrib/ntp/sntp/libevent/test/regress_zlib.c stable/9/contrib/ntp/sntp/libevent/test/test-fdleak.c stable/9/contrib/ntp/sntp/libevent/test/test-ratelim.c stable/9/contrib/ntp/sntp/libevent/test/test-time.c stable/9/contrib/ntp/sntp/libevent/test/tinytest.c stable/9/contrib/ntp/sntp/libevent/test/tinytest.h stable/9/contrib/ntp/sntp/libevent/test/tinytest_macros.h stable/9/contrib/ntp/sntp/libevent/time-internal.h stable/9/contrib/ntp/sntp/libevent/util-internal.h stable/9/contrib/ntp/sntp/libevent/whatsnew-2.1.txt stable/9/contrib/ntp/sntp/libopts/COPYING.mbsd stable/9/contrib/ntp/sntp/libopts/Makefile.am stable/9/contrib/ntp/sntp/libopts/Makefile.in stable/9/contrib/ntp/sntp/libopts/README stable/9/contrib/ntp/sntp/libopts/autoopts.c stable/9/contrib/ntp/sntp/libopts/autoopts.h stable/9/contrib/ntp/sntp/libopts/autoopts/options.h stable/9/contrib/ntp/sntp/libopts/autoopts/usage-txt.h stable/9/contrib/ntp/sntp/libopts/boolean.c stable/9/contrib/ntp/sntp/libopts/compat/compat.h stable/9/contrib/ntp/sntp/libopts/compat/pathfind.c stable/9/contrib/ntp/sntp/libopts/compat/snprintf.c stable/9/contrib/ntp/sntp/libopts/compat/strchr.c stable/9/contrib/ntp/sntp/libopts/compat/strdup.c stable/9/contrib/ntp/sntp/libopts/compat/windows-config.h stable/9/contrib/ntp/sntp/libopts/configfile.c stable/9/contrib/ntp/sntp/libopts/cook.c stable/9/contrib/ntp/sntp/libopts/genshell.c stable/9/contrib/ntp/sntp/libopts/genshell.h stable/9/contrib/ntp/sntp/libopts/libopts.c stable/9/contrib/ntp/sntp/libopts/load.c stable/9/contrib/ntp/sntp/libopts/m4/libopts.m4 stable/9/contrib/ntp/sntp/libopts/m4/liboptschk.m4 stable/9/contrib/ntp/sntp/libopts/makeshell.c stable/9/contrib/ntp/sntp/libopts/nested.c stable/9/contrib/ntp/sntp/libopts/numeric.c stable/9/contrib/ntp/sntp/libopts/pgusage.c stable/9/contrib/ntp/sntp/libopts/proto.h stable/9/contrib/ntp/sntp/libopts/putshell.c stable/9/contrib/ntp/sntp/libopts/restore.c stable/9/contrib/ntp/sntp/libopts/save.c stable/9/contrib/ntp/sntp/libopts/sort.c stable/9/contrib/ntp/sntp/libopts/stack.c stable/9/contrib/ntp/sntp/libopts/streqvcmp.c stable/9/contrib/ntp/sntp/libopts/text_mmap.c stable/9/contrib/ntp/sntp/libopts/tokenize.c stable/9/contrib/ntp/sntp/libopts/usage.c stable/9/contrib/ntp/sntp/libopts/version.c stable/9/contrib/ntp/sntp/loc/darwin stable/9/contrib/ntp/sntp/loc/debian stable/9/contrib/ntp/sntp/loc/freebsd stable/9/contrib/ntp/sntp/loc/legacy stable/9/contrib/ntp/sntp/loc/netbsd stable/9/contrib/ntp/sntp/loc/solaris stable/9/contrib/ntp/sntp/ltmain.sh stable/9/contrib/ntp/sntp/m4/ltversion.m4 stable/9/contrib/ntp/sntp/m4/ntp_libevent.m4 stable/9/contrib/ntp/sntp/m4/ntp_libntp.m4 stable/9/contrib/ntp/sntp/m4/ntp_locinfo.m4 stable/9/contrib/ntp/sntp/m4/ntp_openssl.m4 stable/9/contrib/ntp/sntp/m4/ntp_rlimit.m4 stable/9/contrib/ntp/sntp/m4/os_cflags.m4 stable/9/contrib/ntp/sntp/m4/version.m4 stable/9/contrib/ntp/sntp/main.c (contents, props changed) stable/9/contrib/ntp/sntp/scripts/Makefile.in stable/9/contrib/ntp/sntp/scripts/genLocInfo stable/9/contrib/ntp/sntp/sntp-opts.c stable/9/contrib/ntp/sntp/sntp-opts.def stable/9/contrib/ntp/sntp/sntp-opts.h stable/9/contrib/ntp/sntp/tests/Makefile.am stable/9/contrib/ntp/sntp/tests/Makefile.in stable/9/contrib/ntp/sntp/tests/sntptest.h stable/9/contrib/ntp/sntp/unity/Makefile.am (contents, props changed) stable/9/contrib/ntp/sntp/unity/Makefile.in (contents, props changed) stable/9/contrib/ntp/sntp/unity/auto/generate_test_runner.rb (contents, props changed) stable/9/contrib/ntp/sntp/unity/auto/unity_test_summary.rb (contents, props changed) stable/9/contrib/ntp/sntp/unity/unity.c (contents, props changed) stable/9/contrib/ntp/sntp/unity/unity_internals.h (contents, props changed) stable/9/contrib/ntp/tests/Makefile.am stable/9/contrib/ntp/tests/Makefile.in stable/9/contrib/ntp/tests/bug-2803/Makefile.am (contents, props changed) stable/9/contrib/ntp/tests/bug-2803/Makefile.in (contents, props changed) stable/9/contrib/ntp/tests/bug-2803/run-bug-2803.c (contents, props changed) stable/9/contrib/ntp/tests/libntp/Makefile.am stable/9/contrib/ntp/tests/libntp/Makefile.in stable/9/contrib/ntp/tests/libntp/lfptest.h stable/9/contrib/ntp/tests/libntp/sockaddrtest.h stable/9/contrib/ntp/tests/ntpd/Makefile.am stable/9/contrib/ntp/tests/ntpd/Makefile.in stable/9/contrib/ntp/tests/sandbox/Makefile.am (contents, props changed) stable/9/contrib/ntp/tests/sandbox/Makefile.in (contents, props changed) stable/9/contrib/ntp/tests/sandbox/run-modetoa.c (contents, props changed) stable/9/contrib/ntp/tests/sandbox/run-uglydate.c (contents, props changed) stable/9/contrib/ntp/tests/sandbox/run-ut-2803.c (contents, props changed) stable/9/contrib/ntp/tests/sandbox/smeartest.c (contents, props changed) stable/9/contrib/ntp/tests/sec-2853/Makefile.am (contents, props changed) stable/9/contrib/ntp/tests/sec-2853/Makefile.in (contents, props changed) stable/9/contrib/ntp/tests/sec-2853/run-sec-2853.c (contents, props changed) stable/9/contrib/ntp/tests/sec-2853/sec-2853.c (contents, props changed) stable/9/contrib/ntp/util/Makefile.am (contents, props changed) stable/9/contrib/ntp/util/Makefile.in (contents, props changed) stable/9/contrib/ntp/util/README (contents, props changed) stable/9/contrib/ntp/util/audio-pcm.c (contents, props changed) stable/9/contrib/ntp/util/hist.c (contents, props changed) stable/9/contrib/ntp/util/jitter.c (contents, props changed) stable/9/contrib/ntp/util/ntp-keygen-opts.c stable/9/contrib/ntp/util/ntp-keygen-opts.def stable/9/contrib/ntp/util/ntp-keygen-opts.h stable/9/contrib/ntp/util/ntp-keygen.c (contents, props changed) stable/9/contrib/ntp/util/ntptime.c (contents, props changed) stable/9/contrib/ntp/util/sht.c (contents, props changed) stable/9/contrib/ntp/util/tg.c stable/9/contrib/ntp/util/tickadj.c (contents, props changed) stable/9/etc/mtree/BSD.usr.dist stable/9/etc/ntp.conf stable/9/include/Makefile stable/9/usr.sbin/ntp/Makefile stable/9/usr.sbin/ntp/Makefile.inc stable/9/usr.sbin/ntp/config.h stable/9/usr.sbin/ntp/doc/Makefile stable/9/usr.sbin/ntp/doc/drivers/Makefile stable/9/usr.sbin/ntp/doc/drivers/icons/Makefile stable/9/usr.sbin/ntp/doc/drivers/scripts/Makefile stable/9/usr.sbin/ntp/doc/hints/Makefile stable/9/usr.sbin/ntp/doc/icons/Makefile stable/9/usr.sbin/ntp/doc/ntp-keygen.8 stable/9/usr.sbin/ntp/doc/ntp.conf.5 stable/9/usr.sbin/ntp/doc/ntp.keys.5 stable/9/usr.sbin/ntp/doc/ntpd.8 stable/9/usr.sbin/ntp/doc/ntpdc.8 stable/9/usr.sbin/ntp/doc/ntpq.8 stable/9/usr.sbin/ntp/doc/ntptime.8 stable/9/usr.sbin/ntp/doc/ntptrace.8 stable/9/usr.sbin/ntp/doc/pic/Makefile stable/9/usr.sbin/ntp/doc/scripts/Makefile stable/9/usr.sbin/ntp/libntp/Makefile stable/9/usr.sbin/ntp/libntpevent/event2/event-config.h stable/9/usr.sbin/ntp/libopts/Makefile stable/9/usr.sbin/ntp/libparse/Makefile stable/9/usr.sbin/ntp/ntp-keygen/Makefile stable/9/usr.sbin/ntp/ntpd/Makefile stable/9/usr.sbin/ntp/ntpdate/Makefile stable/9/usr.sbin/ntp/ntpdc/Makefile stable/9/usr.sbin/ntp/ntpq/Makefile stable/9/usr.sbin/ntp/ntptime/Makefile stable/9/usr.sbin/ntp/scripts/mkver stable/9/usr.sbin/ntp/sntp/Makefile Directory Properties: stable/9/ (props changed) stable/9/contrib/ (props changed) stable/9/contrib/ntp/ (props changed) stable/9/contrib/ntp/INSTALL (props changed) stable/9/contrib/ntp/NOTES.y2kfixes (props changed) stable/9/contrib/ntp/README (props changed) stable/9/contrib/ntp/README.bk (props changed) stable/9/contrib/ntp/README.patches (props changed) stable/9/contrib/ntp/README.refclocks (props changed) stable/9/contrib/ntp/README.versions (props changed) stable/9/contrib/ntp/TODO (props changed) stable/9/contrib/ntp/adjtimed/README (props changed) stable/9/contrib/ntp/compile (props changed) stable/9/contrib/ntp/conf/README (props changed) stable/9/contrib/ntp/conf/baldwin.conf (props changed) stable/9/contrib/ntp/conf/grundoon.conf (props changed) stable/9/contrib/ntp/conf/malarky.conf (props changed) stable/9/contrib/ntp/conf/pogo.conf (props changed) stable/9/contrib/ntp/conf/rackety.conf (props changed) stable/9/contrib/ntp/depcomp (props changed) stable/9/contrib/ntp/include/README (props changed) stable/9/contrib/ntp/include/adjtime.h (props changed) stable/9/contrib/ntp/include/ascii.h (props changed) stable/9/contrib/ntp/include/gps.h (props changed) stable/9/contrib/ntp/include/hopf6039.h (props changed) stable/9/contrib/ntp/include/mx4200.h (props changed) stable/9/contrib/ntp/include/ntif.h (props changed) stable/9/contrib/ntp/include/ntp_datum.h (props changed) stable/9/contrib/ntp/include/ntp_if.h (props changed) stable/9/contrib/ntp/install-sh (props changed) stable/9/contrib/ntp/kernel/sys/README (props changed) stable/9/contrib/ntp/kernel/sys/bsd_audioirig.h (props changed) stable/9/contrib/ntp/kernel/sys/i8253.h (props changed) stable/9/contrib/ntp/kernel/sys/pcl720.h (props changed) stable/9/contrib/ntp/kernel/sys/ppsclock.h (props changed) stable/9/contrib/ntp/kernel/sys/timex.h (props changed) stable/9/contrib/ntp/kernel/sys/tpro.h (props changed) stable/9/contrib/ntp/kernel/sys/tt560_api.h (props changed) stable/9/contrib/ntp/libjsmn/example/jsondump.c (props changed) stable/9/contrib/ntp/libjsmn/example/simple.c (props changed) stable/9/contrib/ntp/libntp/README (props changed) stable/9/contrib/ntp/libntp/adjtime.c (props changed) stable/9/contrib/ntp/libntp/adjtimex.c (props changed) stable/9/contrib/ntp/libntp/systime_s.c (props changed) stable/9/contrib/ntp/libparse/README (props changed) stable/9/contrib/ntp/missing (props changed) stable/9/contrib/ntp/ntpd/jupiter.h (props changed) stable/9/contrib/ntp/ntpdate/README (props changed) stable/9/contrib/ntp/ntpdc/README (props changed) stable/9/contrib/ntp/ntpdc/nl_in.c (props changed) stable/9/contrib/ntp/ntpq/README (props changed) stable/9/contrib/ntp/parseutil/README (props changed) stable/9/contrib/ntp/results.y2kfixes (props changed) stable/9/contrib/ntp/scripts/monitoring/README (props changed) stable/9/contrib/ntp/scripts/monitoring/loopwatch.config.SAMPLE (props changed) stable/9/contrib/ntp/scripts/monitoring/lr.pl (props changed) stable/9/contrib/ntp/scripts/monitoring/ntploopstat (props changed) stable/9/contrib/ntp/scripts/monitoring/ntploopwatch (props changed) stable/9/contrib/ntp/scripts/monitoring/timelocal.pl (props changed) stable/9/contrib/ntp/scripts/stats/README (props changed) stable/9/contrib/ntp/scripts/stats/README.stats (props changed) stable/9/contrib/ntp/scripts/stats/README.timecodes (props changed) stable/9/contrib/ntp/scripts/stats/clock.awk (props changed) stable/9/contrib/ntp/scripts/stats/dupe.awk (props changed) stable/9/contrib/ntp/scripts/stats/ensemble.S (props changed) stable/9/contrib/ntp/scripts/stats/ensemble.awk (props changed) stable/9/contrib/ntp/scripts/stats/etf.S (props changed) stable/9/contrib/ntp/scripts/stats/etf.awk (props changed) stable/9/contrib/ntp/scripts/stats/itf.S (props changed) stable/9/contrib/ntp/scripts/stats/itf.awk (props changed) stable/9/contrib/ntp/scripts/stats/loop.S (props changed) stable/9/contrib/ntp/scripts/stats/loop.awk (props changed) stable/9/contrib/ntp/scripts/stats/loop_summary (props changed) stable/9/contrib/ntp/scripts/stats/peer.awk (props changed) stable/9/contrib/ntp/scripts/stats/psummary.awk (props changed) stable/9/contrib/ntp/scripts/stats/summary.sh (props changed) stable/9/contrib/ntp/scripts/stats/tdata.S (props changed) stable/9/contrib/ntp/scripts/stats/tdata.awk (props changed) stable/9/contrib/ntp/sntp/depcomp (props changed) stable/9/contrib/ntp/sntp/install-sh (props changed) stable/9/contrib/ntp/sntp/libpkgver/colcomp.c (props changed) stable/9/contrib/ntp/sntp/libpkgver/pkgver.h (props changed) stable/9/contrib/ntp/sntp/missing (props changed) stable/9/contrib/ntp/sntp/unity/auto/colour_prompt.rb (props changed) stable/9/contrib/ntp/sntp/unity/auto/colour_reporter.rb (props changed) stable/9/contrib/ntp/sntp/unity/auto/generate_module.rb (props changed) stable/9/contrib/ntp/sntp/unity/auto/runner_maybe.c (props changed) stable/9/contrib/ntp/sntp/unity/auto/test_file_filter.rb (props changed) stable/9/contrib/ntp/sntp/unity/unity.h (props changed) stable/9/contrib/ntp/sntp/unity/unity_fixture.c (props changed) stable/9/contrib/ntp/sntp/unity/unity_fixture.h (props changed) stable/9/contrib/ntp/sntp/unity/unity_fixture_internals.h (props changed) stable/9/contrib/ntp/sntp/unity/unity_fixture_malloc_overrides.h (props changed) stable/9/contrib/ntp/tests/bug-2803/bug-2803.c (props changed) stable/9/contrib/ntp/tests/sandbox/bug-2803.c (props changed) stable/9/contrib/ntp/tests/sandbox/modetoa.c (props changed) stable/9/contrib/ntp/tests/sandbox/uglydate.c (props changed) stable/9/contrib/ntp/tests/sandbox/ut-2803.c (props changed) stable/9/contrib/ntp/util/byteorder.c (props changed) stable/9/contrib/ntp/util/kern.c (props changed) stable/9/contrib/ntp/util/longsize.c (props changed) stable/9/contrib/ntp/util/pps-api.c (props changed) stable/9/contrib/ntp/util/precision.c (props changed) stable/9/contrib/ntp/util/testrs6000.c (props changed) stable/9/contrib/ntp/util/timetrim.c (props changed) stable/9/etc/ (props changed) stable/9/etc/mtree/ (props changed) stable/9/include/ (props changed) stable/9/share/ (props changed) stable/9/share/mk/ (props changed) stable/9/usr.sbin/ (props changed) stable/9/usr.sbin/ntp/ (props changed) Modified: stable/9/UPDATING ============================================================================== --- stable/9/UPDATING Mon Oct 26 11:35:40 2015 (r289997) +++ stable/9/UPDATING Mon Oct 26 11:36:40 2015 (r289998) @@ -11,6 +11,13 @@ handbook: Items affecting the ports and packages system can be found in /usr/ports/UPDATING. Please read that file before running portupgrade. +20151026: + NTP has been upgraded to 4.2.8p4. + The configuration file syntax has been changed, thus mergemaster + run is recommended. Now the "kod" parameter requires "limited" + parameter. If the ntp.conf is not updated, the ntpd will run + successfully, but with KoD disabled. + 20150624: An additional fix for the issue described in the 20150615 sendmail entry below has been been committed in revision 284788. Modified: stable/9/contrib/ntp/COPYRIGHT ============================================================================== --- stable/9/contrib/ntp/COPYRIGHT Mon Oct 26 11:35:40 2015 (r289997) +++ stable/9/contrib/ntp/COPYRIGHT Mon Oct 26 11:36:40 2015 (r289998) @@ -2,18 +2,18 @@ This file is automatically generated fro Copyright Notice - jpg "Clone me," says Dolly sheepishly + jpg "Clone me," says Dolly sheepishly. - Last update: 20:31 UTC Saturday, January 06, 2007 + Last update: 17-Jan-2015 00:16 UTC _________________________________________________________________ The following copyright notice applies to all files collectively called the Network Time Protocol Version 4 Distribution. Unless - specifically declared otherwise in an individual file, this notice - applies as if the text was explicitly included in the file. + specifically declared otherwise in an individual file, this entire + notice applies as if the text was explicitly included in the file. *********************************************************************** * * -* Copyright (c) David L. Mills 1992-2009 * +* Copyright (c) University of Delaware 1992-2015 * * * * Permission to use, copy, modify, and distribute this software and * * its documentation for any purpose with or without fee is hereby * @@ -29,148 +29,201 @@ This file is automatically generated fro * * *********************************************************************** + Content starting in 2011 from Harlan Stenn, Danny Mayer, and Martin + Burnicki is: +*********************************************************************** +* * +* Copyright (c) Network Time Foundation 2011-2015 * +* * +* All Rights Reserved * +* * +* Redistribution and use in source and binary forms, with or without * +* modification, are permitted provided that the following conditions * +* are met: * +* 1. Redistributions of source code must retain the above copyright * +* notice, this list of conditions and the following disclaimer. * +* 2. Redistributions in binary form must reproduce the above * +* copyright notice, this list of conditions and the following * +* disclaimer in the documentation and/or other materials provided * +* with the distribution. * +* * +* THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS * +* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * +* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * +* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE * +* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * +* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT * +* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR * +* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * +* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * +* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE * +* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * +* DAMAGE. * +*********************************************************************** + The following individuals contributed in part to the Network Time Protocol Distribution Version 4 and are acknowledged as authors of this work. - 1. [1]Mark Andrews Leitch atomic clock + 1. [1]Takao Abe Clock driver for JJY receivers + 2. [2]Mark Andrews Leitch atomic clock controller - 2. [2]Bernd Altmeier hopf Elektronik serial + 3. [3]Bernd Altmeier hopf Elektronik serial line and PCI-bus devices - 3. [3]Viraj Bais and [4]Clayton Kirkwood + 4. [4]Viraj Bais and [5]Clayton Kirkwood port to WindowsNT 3.5 - 4. [5]Michael Barone GPSVME fixes - 5. [6]Jean-Francois Boudreault - IPv6 support + 5. [6]Michael Barone GPSVME fixes 6. [7]Karl Berry syslog to file option 7. [8]Greg Brackley Major rework of WINNT port. Clean up recvbuf and iosignal code into separate modules. 8. [9]Marc Brett Magnavox GPS clock driver 9. [10]Piete Brooks MSF clock driver, Trimble PARSE support - 10. [11]Reg Clemens Oncore driver (Current maintainer) - 11. [12]Steve Clift OMEGA clock driver - 12. [13]Casey Crellin vxWorks (Tornado) port and + 10. [11]Nelson B Bolyard update and complete + broadcast and crypto features in sntp + 11. [12]Jean-Francois Boudreault + IPv6 support + 12. [13]Reg Clemens Oncore driver (Current maintainer) + 13. [14]Steve Clift OMEGA clock driver + 14. [15]Casey Crellin vxWorks (Tornado) port and help with target configuration - 13. [14]Sven Dietrich Palisade reference + 15. [16]Sven Dietrich Palisade reference clock driver, NT adj. residuals, integrated Greg's Winnt port. - 14. [15]John A. Dundas III Apple A/UX port - 15. [16]Torsten Duwe Linux + 16. [17]John A. Dundas III Apple A/UX port + 17. [18]Torsten Duwe Linux port - 16. [17]Dennis Ferguson foundation code for + 18. [19]Dennis Ferguson foundation code for NTP Version 2 as specified in RFC-1119 - 17. [18]John Hay IPv6 support and testing - 18. [19]Glenn Hollinger GOES clock driver - 19. [20]Mike Iglesias DEC Alpha port - 20. [21]Jim Jagielski A/UX port - 21. [22]Jeff Johnson massive prototyping + 19. [20]John Hay IPv6 support and testing + 20. [21]Dave Hart General maintenance, Windows + port interpolation rewrite + 21. [22]Claas Hilbrecht NeoClock4X clock driver + 22. [23]Glenn Hollinger GOES clock driver + 23. [24]Mike Iglesias DEC Alpha port + 24. [25]Jim Jagielski A/UX port + 25. [26]Jeff Johnson massive prototyping overhaul - 22. [23]Hans Lambermont or - [24] ntpsweep - 23. [25]Poul-Henning Kamp Oncore driver (Original + 26. [27]Hans Lambermont or + [28] ntpsweep + 27. [29]Poul-Henning Kamp Oncore driver (Original author) - 24. [26]Frank Kardel [27] PARSE - driver (>14 reference clocks), STREAMS modules for PARSE, support + 28. [30]Frank Kardel [31] PARSE + (driver 14 reference clocks), STREAMS modules for PARSE, support scripts, syslog cleanup, dynamic interface handling - 25. [28]William L. Jones RS/6000 AIX + 29. [32]Johannes Maximilian Kuehn Rewrote sntp to + comply with NTPv4 specification, ntpq saveconfig + 30. [33]William L. Jones RS/6000 AIX modifications, HPUX modifications - 26. [29]Dave Katz RS/6000 AIX port - 27. [30]Craig Leres 4.4BSD port, ppsclock, Magnavox + 31. [34]Dave Katz RS/6000 AIX port + 32. [35]Craig Leres 4.4BSD port, ppsclock, Magnavox GPS clock driver - 28. [31]George Lindholm SunOS 5.1 port - 29. [32]Louis A. Mamakos MD5-based authentication - 30. [33]Lars H. Mathiesen adaptation of foundation + 33. [36]George Lindholm SunOS 5.1 port + 34. [37]Louis A. Mamakos MD5-based authentication + 35. [38]Lars H. Mathiesen adaptation of foundation code for Version 3 as specified in RFC-1305 - 31. [34]Danny Mayer Network I/O, Windows Port, Code + 36. [39]Danny Mayer Network I/O, Windows Port, Code Maintenance - 32. [35]David L. Mills Version 4 foundation: clock - discipline, authentication, precision kernel; clock drivers: - Spectracom, Austron, Arbiter, Heath, ATOM, ACTS, KSI/Odetics; - audio clock drivers: CHU, WWV/H, IRIG - 33. [36]Wolfgang Moeller VMS port - 34. [37]Jeffrey Mogul ntptrace utility - 35. [38]Tom Moore i386 svr4 port - 36. [39]Kamal A Mostafa SCO OpenServer port - 37. [40]Derek Mulcahy and [41]Damon + 37. [40]David L. Mills Version 4 foundation, + precision kernel; clock drivers: 1, 3, 4, 6, 7, 11, 13, 18, 19, + 22, 36 + 38. [41]Wolfgang Moeller VMS port + 39. [42]Jeffrey Mogul ntptrace utility + 40. [43]Tom Moore i386 svr4 port + 41. [44]Kamal A Mostafa SCO OpenServer port + 42. [45]Derek Mulcahy and [46]Damon Hart-Davis ARCRON MSF clock driver - 38. [42]Rainer Pruy + 43. [47]Rob Neal Bancomm refclock and config/parse code + maintenance + 44. [48]Rainer Pruy monitoring/trap scripts, statistics file handling - 39. [43]Dirce Richards Digital UNIX V4.0 port - 40. [44]Wilfredo Sánchez added support for + 45. [49]Dirce Richards Digital UNIX V4.0 port + 46. [50]Wilfredo Sánchez added support for NetInfo - 41. [45]Nick Sayer SunOS streams modules - 42. [46]Jack Sasportas Saved a Lot of + 47. [51]Nick Sayer SunOS streams modules + 48. [52]Jack Sasportas Saved a Lot of space on the stuff in the html/pic/ subdirectory - 43. [47]Ray Schnitzler Unixware1 port - 44. [48]Michael Shields USNO clock driver - 45. [49]Jeff Steinman Datum PTS clock + 49. [53]Ray Schnitzler Unixware1 port + 50. [54]Michael Shields USNO clock driver + 51. [55]Jeff Steinman Datum PTS clock driver - 46. [50]Harlan Stenn GNU automake/autoconfigure + 52. [56]Harlan Stenn GNU automake/autoconfigure makeover, various other bits (see the ChangeLog) - 47. [51]Kenneth Stone HP-UX port - 48. [52]Ajit Thyagarajan IP multicast/anycast + 53. [57]Kenneth Stone HP-UX port + 54. [58]Ajit Thyagarajan IP multicast/anycast support - 49. [53]Tomoaki TSURUOKA TRAK clock + 55. [59]Tomoaki TSURUOKA TRAK clock driver - 50. [54]Paul A Vixie TrueTime GPS driver, generic + 56. [60]Brian Utterback General codebase, + Solaris issues + 57. [61]Loganaden Velvindron Sandboxing + (libseccomp) support + 58. [62]Paul A Vixie TrueTime GPS driver, generic TrueTime clock driver - 51. [55]Ulrich Windl corrected and + 59. [63]Ulrich Windl corrected and validated HTML documents according to the HTML DTD _________________________________________________________________ References - 1. mailto:%20mark_andrews@isc.org - 2. mailto:%20altmeier@atlsoft.de - 3. mailto:%20vbais@mailman1.intel.co - 4. mailto:%20kirkwood@striderfm.intel.com - 5. mailto:%20michael.barone@lmco.com - 6. mailto:%20Jean-Francois.Boudreault@viagenie.qc.ca + 1. mailto:%20takao_abe@xurb.jp + 2. mailto:%20mark_andrews@isc.org + 3. mailto:%20altmeier@atlsoft.de + 4. mailto:%20vbais@mailman1.intel.co + 5. mailto:%20kirkwood@striderfm.intel.com + 6. mailto:%20michael.barone@lmco.com 7. mailto:%20karl@owl.HQ.ileaf.com 8. mailto:%20greg.brackley@bigfoot.com 9. mailto:%20Marc.Brett@westgeo.com 10. mailto:%20Piete.Brooks@cl.cam.ac.uk - 11. mailto:%20reg@dwf.com - 12. mailto:%20clift@ml.csiro.au - 13. mailto:casey@csc.co.za - 14. mailto:%20Sven_Dietrich@trimble.COM - 15. mailto:%20dundas@salt.jpl.nasa.gov - 16. mailto:%20duwe@immd4.informatik.uni-erlangen.de - 17. mailto:%20dennis@mrbill.canet.ca - 18. mailto:%20jhay@icomtek.csir.co.za - 19. mailto:%20glenn@herald.usask.ca - 20. mailto:%20iglesias@uci.edu - 21. mailto:%20jagubox.gsfc.nasa.gov - 22. mailto:%20jbj@chatham.usdesign.com - 23. mailto:Hans.Lambermont@nl.origin-it.com - 24. mailto:H.Lambermont@chello.nl - 25. mailto:%20phk@FreeBSD.ORG - 26. http://www4.informatik.uni-erlangen.de/%7ekardel - 27. mailto:%20kardel(at)ntp(dot)org - 28. mailto:%20jones@hermes.chpc.utexas.edu - 29. mailto:%20dkatz@cisco.com - 30. mailto:%20leres@ee.lbl.gov - 31. mailto:%20lindholm@ucs.ubc.ca - 32. mailto:%20louie@ni.umd.edu - 33. mailto:%20thorinn@diku.dk - 34. mailto:%20mayer@ntp.org - 35. mailto:%20mills@udel.edu - 36. mailto:%20moeller@gwdgv1.dnet.gwdg.de - 37. mailto:%20mogul@pa.dec.com - 38. mailto:%20tmoore@fievel.daytonoh.ncr.com - 39. mailto:%20kamal@whence.com - 40. mailto:%20derek@toybox.demon.co.uk - 41. mailto:%20d@hd.org - 42. mailto:%20Rainer.Pruy@informatik.uni-erlangen.de - 43. mailto:%20dirce@zk3.dec.com - 44. mailto:%20wsanchez@apple.com - 45. mailto:%20mrapple@quack.kfu.com - 46. mailto:%20jack@innovativeinternet.com - 47. mailto:%20schnitz@unipress.com - 48. mailto:%20shields@tembel.org - 49. mailto:%20pebbles.jpl.nasa.gov - 50. mailto:%20harlan@pfcs.com - 51. mailto:%20ken@sdd.hp.com - 52. mailto:%20ajit@ee.udel.edu - 53. mailto:%20tsuruoka@nc.fukuoka-u.ac.jp - 54. mailto:%20vixie@vix.com - 55. mailto:%20Ulrich.Windl@rz.uni-regensburg.de + 11. mailto:%20nelson@bolyard.me + 12. mailto:%20Jean-Francois.Boudreault@viagenie.qc.ca + 13. mailto:%20reg@dwf.com + 14. mailto:%20clift@ml.csiro.au + 15. mailto:%20casey@csc.co.za + 16. mailto:%20Sven_Dietrich@trimble.COM + 17. mailto:%20dundas@salt.jpl.nasa.gov + 18. mailto:%20duwe@immd4.informatik.uni-erlangen.de + 19. mailto:%20dennis@mrbill.canet.ca + 20. mailto:%20jhay@icomtek.csir.co.za + 21. mailto:%20davehart@davehart.com + 22. mailto:%20neoclock4x@linum.com + 23. mailto:%20glenn@herald.usask.ca + 24. mailto:%20iglesias@uci.edu + 25. mailto:%20jagubox.gsfc.nasa.gov + 26. mailto:%20jbj@chatham.usdesign.com + 27. mailto:%20Hans.Lambermont@nl.origin-it.com + 28. mailto:H.Lambermont@chello.nl + 29. mailto:%20phk@FreeBSD.ORG + 30. http://www4.informatik.uni-erlangen.de/%7ekardel + 31. mailto:%20kardel%20%28at%29%20ntp%20%28dot%29%20org + 32. mailto:kuehn@ntp.org + 33. mailto:%20jones@hermes.chpc.utexas.edu + 34. mailto:%20dkatz@cisco.com + 35. mailto:%20leres@ee.lbl.gov + 36. mailto:%20lindholm@ucs.ubc.ca + 37. mailto:%20louie@ni.umd.edu + 38. mailto:%20thorinn@diku.dk + 39. mailto:%20mayer@ntp.org + 40. mailto:%20mills@udel.edu + 41. mailto:%20moeller@gwdgv1.dnet.gwdg.de + 42. mailto:%20mogul@pa.dec.com + 43. mailto:%20tmoore@fievel.daytonoh.ncr.com + 44. mailto:%20kamal@whence.com + 45. mailto:%20derek@toybox.demon.co.uk + 46. mailto:%20d@hd.org + 47. mailto:%20neal@ntp.org + 48. mailto:%20Rainer.Pruy@informatik.uni-erlangen.de + 49. mailto:%20dirce@zk3.dec.com + 50. mailto:%20wsanchez@apple.com + 51. mailto:%20mrapple@quack.kfu.com + 52. mailto:%20jack@innovativeinternet.com + 53. mailto:%20schnitz@unipress.com + 54. mailto:%20shields@tembel.org + 55. mailto:%20pebbles.jpl.nasa.gov + 56. mailto:%20harlan@pfcs.com + 57. mailto:%20ken@sdd.hp.com + 58. mailto:%20ajit@ee.udel.edu + 59. mailto:%20tsuruoka@nc.fukuoka-u.ac.jp + 60. mailto:%20brian.utterback@oracle.com + 61. mailto:%20loganaden@gmail.com + 62. mailto:%20vixie@vix.com + 63. mailto:%20Ulrich.Windl@rz.uni-regensburg.de Modified: stable/9/contrib/ntp/ChangeLog ============================================================================== --- stable/9/contrib/ntp/ChangeLog Mon Oct 26 11:35:40 2015 (r289997) +++ stable/9/contrib/ntp/ChangeLog Mon Oct 26 11:36:40 2015 (r289998) @@ -1,4 +1,3595 @@ --- +(4.2.8p4) 2015/10/21 Released by Harlan Stenn +(4.2.8p4-RC1) 2015/10/06 Released by Harlan Stenn + +* [Sec 2899] CVE-2014-9297 perlinger@ntp.org +* [Sec 2901] Drop invalid packet before checking KoD. Check for all KoD's. + Danny Mayer. Log incoming packets that fail TEST2. Harlan Stenn. +* [Sec 2902] configuration directives "pidfile" and "driftfile" + should be local-only. perlinger@ntp.org (patch by Miroslav Lichvar) +* [Sec 2909] added missing call to 'free()' in ntp_crypto.c. perlinger@ntp.org +* [Sec 2913] TALOS-CAN-0052: crash by loop counter underrun. perlinger@ntp.org +* [Sec 2916] TALOS-CAN-0054: memory corruption in password store. JPerlinger +* [Sec 2917] TALOS-CAN-0055: Infinite loop if extended logging enabled and + the logfile and keyfile are the same. perlinger@ntp.org +* [Sec 1918] TALOS-CAN-0062: prevent directory traversal for VMS, too, when + using 'saveconfig' command. perlinger@ntp.org +* [Bug 2919] TALOS-CAN-0063: avoid buffer overrun in ntpq. perlinger@ntp.org +* [Sec 2020] TALOS-CAN-0064: signed/unsiged clash could lead to buffer overun + and memory corruption. perlinger@ntp.org +* [Sec 2921] TALOS-CAN-0065: password length memory corruption. JPerlinger. +* [Sec 2922] decodenetnum() will ASSERT botch instead of returning FAIL + on some bogus values. Harlan Stenn. +* [Sec 2941] NAK to the Future: Symmetric association authentication + bypass via crypto-NAK. Patch applied. perlinger@ntp.org +* [Bug 2332] (reopened) Exercise thread cancellation once before dropping + privileges and limiting resources in NTPD removes the need to link + forcefully against 'libgcc_s' which does not always work. J.Perlinger +* [Bug 2595] ntpdate man page quirks. Hal Murray, Harlan Stenn. +* [Bug 2625] Deprecate flag1 in local refclock. Hal Murray, Harlan Stenn. +* [Bug 2817] Stop locking ntpd into memory by default under Linux. H.Stenn. +* [Bug 2821] minor build issues: fixed refclock_gpsdjson.c. perlinger@ntp.org +* [Bug 2823] ntpsweep with recursive peers option doesn't work. H.Stenn. +* [Bug 2849] Systems with more than one default route may never + synchronize. Brian Utterback. Note that this patch might need to + be reverted once Bug 2043 has been fixed. +* [Bug 2864] 4.2.8p3 fails to compile on Windows. Juergen Perlinger +* [Bug 2866] segmentation fault at initgroups(). Harlan Stenn. +* [Bug 2867] ntpd with autokey active crashed by 'ntpq -crv'. J.Perlinger +* [Bug 2873] libevent should not include .deps/ in the tarball. H.Stenn +* [Bug 2874] Don't distribute generated sntp/tests/fileHandlingTest.h. H.Stenn +* [Bug 2875] sntp/Makefile.am: Get rid of DIST_SUBDIRS. libevent must + be configured for the distribution targets. Harlan Stenn. +* [Bug 2883] ntpd crashes on exit with empty driftfile. Miroslav Lichvar. +* [Bug 2886] Mis-spelling: "outlyer" should be "outlier". dave@horsfall.org +* [Bug 2888] streamline calendar functions. perlinger@ntp.org +* [Bug 2889] ntp-dev-4.3.67 does not build on Windows. perlinger@ntp.org +* [Bug 2890] Ignore ENOBUFS on routing netlink socket. Konstantin Khlebnikov. +* [Bug 2906] make check needs better support for pthreads. Harlan Stenn. +* [Bug 2907] dist* build targets require our libevent/ to be enabled. HStenn. +* [Bug 2912] no munlockall() under Windows. David Taylor, Harlan Stenn. +* libntp/emalloc.c: Remove explicit include of stdint.h. Harlan Stenn. +* Put Unity CPPFLAGS items in unity_config.h. Harlan Stenn. +* tests/ntpd/g_leapsec.cpp typo fix. Harlan Stenn. +* Phase 1 deprecation of google test in sntp/tests/. Harlan Stenn. +* On some versions of HP-UX, inttypes.h does not include stdint.h. H.Stenn. +* top_srcdir can change based on ntp v. sntp. Harlan Stenn. +* sntp/tests/ function parameter list cleanup. Damir Tomić. +* tests/libntp/ function parameter list cleanup. Damir Tomić. +* tests/ntpd/ function parameter list cleanup. Damir Tomić. +* sntp/unity/unity_config.h: handle stdint.h. Harlan Stenn. +* sntp/unity/unity_internals.h: handle *INTPTR_MAX on old Solaris. H.Stenn. +* tests/libntp/timevalops.c and timespecops.c fixed error printing. D.Tomić. +* tests/libntp/ improvements in code and fixed error printing. Damir Tomić. +* tests/libntp: a_md5encrypt.c, authkeys.c, buftvtots.c, calendar.c, caljulian.c, + caltontp.c, clocktime.c, humandate.c, hextolfp.c, decodenetnum.c - fixed + formatting; first declaration, then code (C90); deleted unnecessary comments; + changed from sprintf to snprintf; fixed order of includes. Tomasz Flendrich +* tests/libntp/lfpfunc.c remove unnecessary include, remove old comments, + fix formatting, cleanup. Tomasz Flendrich +* tests/libntp/lfptostr.c remove unnecessary include, add consts, fix formatting. + Tomasz Flendrich +* tests/libntp/statestr.c remove empty functions, remove unnecessary include, + fix formatting. Tomasz Flendrich +* tests/libntp/modetoa.c fixed formatting. Tomasz Flendrich +* tests/libntp/msyslog.c fixed formatting. Tomasz Flendrich +* tests/libntp/numtoa.c deleted unnecessary empty functions, fixed formatting. + Tomasz Flendrich +* tests/libntp/numtohost.c added const, fixed formatting. Tomasz Flendrich +* tests/libntp/refnumtoa.c fixed formatting. Tomasz Flendrich +* tests/libntp/ssl_init.c fixed formatting. Tomasz Flendrich +* tests/libntp/tvtots.c fixed a bug, fixed formatting. Tomasz Flendrich +* tests/libntp/uglydate.c removed an unnecessary include. Tomasz Flendrich +* tests/libntp/vi64ops.c removed an unnecessary comment, fixed formatting. +* tests/libntp/ymd3yd.c removed an empty function and an unnecessary include, +fixed formatting. Tomasz Flendrich +* tests/libntp/timespecops.c fixed formatting, fixed the order of includes, + removed unnecessary comments, cleanup. Tomasz Flendrich +* tests/libntp/timevalops.c fixed the order of includes, deleted unnecessary + comments, cleanup. Tomasz Flendrich +* tests/libntp/sockaddrtest.h making it agree to NTP's conventions of formatting. + Tomasz Flendrich +* tests/libntp/lfptest.h cleanup. Tomasz Flendrich +* tests/libntp/test-libntp.c fix formatting. Tomasz Flendrich +* sntp/tests/crypto.c is now using proper Unity's assertions, fixed formatting. + Tomasz Flendrich +* sntp/tests/kodDatabase.c added consts, deleted empty function, + fixed formatting. Tomasz Flendrich +* sntp/tests/kodFile.c cleanup, fixed formatting. Tomasz Flendrich +* sntp/tests/packetHandling.c is now using proper Unity's assertions, + fixed formatting, deleted unused variable. Tomasz Flendrich +* sntp/tests/keyFile.c is now using proper Unity's assertions, fixed formatting. + Tomasz Flendrich +* sntp/tests/packetProcessing.c changed from sprintf to snprintf, + fixed formatting. Tomasz Flendrich +* sntp/tests/utilities.c is now using proper Unity's assertions, changed + the order of includes, fixed formatting, removed unnecessary comments. + Tomasz Flendrich +* sntp/tests/sntptest.h fixed formatting. Tomasz Flendrich +* sntp/tests/fileHandlingTest.h.in fixed a possible buffer overflow problem, + made one function do its job, deleted unnecessary prints, fixed formatting. + Tomasz Flendrich +* sntp/unity/Makefile.am added a missing header. Tomasz Flendrich +* sntp/unity/unity_config.h: Distribute it. Harlan Stenn. +* sntp/libevent/evconfig-private.h: remove generated filefrom SCM. H.Stenn. +* sntp/unity/Makefile.am: fix some broken paths. Harlan Stenn. +* sntp/unity/unity.c: Clean up a printf(). Harlan Stenn. +* Phase 1 deprecation of google test in tests/libntp/. Harlan Stenn. +* Don't build sntp/libevent/sample/. Harlan Stenn. +* tests/libntp/test_caltontp needs -lpthread. Harlan Stenn. +* br-flock: --enable-local-libevent. Harlan Stenn. +* Wrote tests for ntpd/ntp_prio_q.c. Tomasz Flendrich +* scripts/lib/NTP/Util.pm: stratum output is version-dependent. Harlan Stenn. +* Get rid of the NTP_ prefix on our assertion macros. Harlan Stenn. +* Code cleanup. Harlan Stenn. +* libntp/icom.c: Typo fix. Harlan Stenn. +* util/ntptime.c: initialization nit. Harlan Stenn. +* ntpd/ntp_peer.c:newpeer(): added a DEBUG_REQUIRE(srcadr). Harlan Stenn. +* Add std_unity_tests to various Makefile.am files. Harlan Stenn. +* ntpd/ntp_restrict.c: added a few assertions, created tests for this file. + Tomasz Flendrich +* Changed progname to be const in many files - now it's consistent. Tomasz + Flendrich +* Typo fix for GCC warning suppression. Harlan Stenn. +* Added tests/ntpd/ntp_scanner.c test. Damir Tomić. +* Added declarations to all Unity tests, and did minor fixes to them. + Reduced the number of warnings by half. Damir Tomić. +* Updated generate_test_runner.rb and updated the sntp/unity/auto directory + with the latest Unity updates from Mark. Damir Tomić. +* Retire google test - phase I. Harlan Stenn. +* Unity test cleanup: move declaration of 'initializing'. Harlan Stenn. +* Update the NEWS file. Harlan Stenn. +* Autoconf cleanup. Harlan Stenn. +* Unit test dist cleanup. Harlan Stenn. +* Cleanup various test Makefile.am files. Harlan Stenn. +* Pthread autoconf macro cleanup. Harlan Stenn. +* Fix progname definition in unity runner scripts. Harlan Stenn. +* Clean trailing whitespace in tests/ntpd/Makefile.am. Harlan Stenn. +* Update the patch for bug 2817. Harlan Stenn. +* More updates for bug 2817. Harlan Stenn. +* Fix bugs in tests/ntpd/ntp_prio_q.c. Harlan Stenn. +* gcc on older HPUX may need +allowdups. Harlan Stenn. +* Adding missing MCAST protection. Harlan Stenn. +* Disable certain test programs on certain platforms. Harlan Stenn. +* Implement --enable-problem-tests (on by default). Harlan Stenn. +* build system tweaks. Harlan Stenn. +--- +(4.2.8p3) 2015/06/29 Released by Harlan Stenn + +* [Sec 2853] Crafted remote config packet can crash some versions of + ntpd. Aleksis Kauppinen, Juergen Perlinger, Harlan Stenn. +* [Sec 2853] Initial work on tests/sec-2853/. Harlan Stenn. +* [Bug 1060] Buffer overruns in libparse/clk_rawdcf.c. Helge Oldach. +* [Bug 2846] Report 'unsynchronized' status during the leap second. + Fixed in Martin's changes to Bug 2855. Martin Burnicki. +* [Bug 2859] Improve raw DCF77 robustness deconding. Frank Kardel. +* [Bug 2860] ntpq ifstats sanity check is too stringent. Frank Kardel. +* README.leapsmear added. Martin Burnicki. +* README.leapsmear edited. Harlan Stenn. +* tests/libntp/msyslog.c: fixed a gcc warning. Tomasz Flendrich. +* ntpd/ntp.conf.def: Document DSCP and leapsmearinterval. Harlan Stenn. +* html/miscopt.html: Document leapsmearinterval, other cleanup. Harlan Stenn. +--- +(4.2.8p3-RC3) 2015/06/27 Released by Harlan Stenn + +* [Bug 2855] Parser fix for conditional leap smear code. Harlan Stenn. +* [Bug 2855] Report leap smear in the REFID. Harlan Stenn. +* [Bug 2856] ntpd should wait() on terminated child processes. Paul Green. +* [Bug 2857] Stratus VOS does not support SIGIO. Paul Green. +* html/drivers/driver22.html: typo fix. Harlan Stenn. +* refidsmear test cleanup. Tomasz Flendrich. +* refidsmear function support and tests. Harlan Stenn. +* sntp/tests/Makefile.am: remove g_nameresolution.cpp as it tested + something that was only in the 4.2.6 sntp. Harlan Stenn. +* Modified tests/bug-2803/Makefile.am so it builds Unity framework tests. + Damir Tomić +* Modified tests/libtnp/Makefile.am so it builds Unity framework tests. + Damir Tomić +* Modified sntp/tests/Makefile.am so it builds Unity framework tests. + Damir Tomić +* tests/sandbox/smeartest.c: Harlan Stenn, Damir Tomic, Juergen Perlinger. +* Converted from gtest to Unity: tests/bug-2803/. Damir Tomić +* Converted from gtest to Unity: tests/libntp/ a_md5encrypt, atoint.c, + atouint.c, authkeys.c, buftvtots.c, calendar.c, caljulian.c, + calyearstart.c, clocktime.c, hextoint.c, lfpfunc.c, modetoa.c, + numtoa.c, numtohost.c, refnumtoa.c, ssl_init.c, statestr.c, + timespecops.c, timevalops.c, uglydate.c, vi64ops.c, ymd2yd.c. + Damir Tomić +* Converted from gtest to Unity: sntp/tests/ kodDatabase.c, kodFile.c, + networking.c, keyFile.c, utilities.cpp, sntptest.h, + fileHandlingTest.h. Damir Tomić +* Converted from gtest to Unity: sntp/tests/ caltontp.c, humandate.c, + msyslog.c, prettydate.c, recvbuff.c, sfptostr.c, tstotv.c, tvtots.c, + sntp/tests/packetProcessing.c. Tomasz Flendrich +--- +(4.2.8p3-RC2) 2015/06/24 Released by Harlan Stenn + +* [Bug 2778] Implement "apeers" ntpq command to include associd. +* [Bug 2805] ntpd fails to join multicast group. +* [Bug 2824] Convert update-leap to perl. (also see 2769) +* [Bug 2830] ntpd doesn't always transfer the correct TAI offset via autokey + NTPD transfers the current TAI (instead of an announcement) now. + This might still needed improvement. + Update autokey data ASAP when 'sys_tai' changes. + Fix unit test that was broken by changes for autokey update. + Avoid potential signature length issue and use DPRINTF where possible + in ntp_crypto.c. +* [Bug 2832] refclock_jjy.c supports the TDC-300. +* [Bug 2834] Correct a broken html tag in html/refclock.html +* [Bug 2836] DFC77 patches from Frank Kardel to make decoding more + robust, and require 2 consecutive timestamps to be consistent. +* [Bug 2837] Allow a configurable DSCP value. +* [Bug 2837] add test for DSCP to ntpd/complete.conf.in +* [Bug 2842] Glitch in ntp.conf.def documentation stanza. +* [Bug 2842] Bug in mdoc2man. +* [Bug 2843] make check fails on 4.3.36 + Fixed compiler warnings about numeric range overflow + (The original topic was fixed in a byplay to bug#2830) +* [Bug 2845] Harden memory allocation in ntpd. +* [Bug 2852] 'make check' can't find unity.h. Hal Murray. +* [Bug 2854] Missing brace in libntp/strdup.c. Masanari Iida. +* [Bug 2855] Implement conditional leap smear code. Martin Burnicki. +* [Bug 2855] leap smear cleanup. Harlan Stenn. +* Initial support for experimental leap smear code. Harlan Stenn. +* Fixes to sntp/tests/fileHandlingTest.h.in. Harlan Stenn. +* Report select() debug messages at debug level 3 now. +* sntp/scripts/genLocInfo: treat raspbian as debian. +* Unity test framework fixes. + ** Requires ruby for changes to tests. +* Initial support for PACKAGE_VERSION tests. +* sntp/libpkgver belongs in EXTRA_DIST, not DIST_SUBDIRS. +* tests/bug-2803/Makefile.am must distribute bug-2803.h. +* automake-1.15 cleanup for sntp/tests/fileHandlingTest.h.in . Harlan Stenn. +--- +(4.2.8p3-RC1) 2015/05/12 Released by Harlan Stenn + +* CID 739725: Fix a rare resource leak in libevent/listener.c. +* CID 1295478: Quiet a pedantic potential error from the fix for Bug 2776. +* CID 1296235: Fix refclock_jjy.c and correcting type of the driver40-ja.html +* CID 1269537: Clean up a line of dead code in getShmTime(). +* [Bug 2590] autogen-5.18.5. +* [Bug 2612] restrict: Warn when 'monitor' can't be disabled because + of 'limited'. +* [Bug 2650] fix includefile processing. +* [Bug 2745] ntpd -x steps clock on leap second + Fixed an initial-value problem that caused misbehaviour in absence of + any leapsecond information. + Do leap second stepping only of the step adjustment is beyond the + proper jump distance limit and step correction is allowed at all. +* [Bug 2750] build for Win64 + Building for 32bit of loopback ppsapi needs def file +* [Bug 2776] Improve ntpq's 'help keytype'. +* [Bug 2782] Refactor refclock_shm.c, add memory barrier protection. +* [Bug 2792] If the IFF_RUNNING interface flag is supported then an + interface is ignored as long as this flag is not set since the + interface is not usable (e.g., no link). +* [Bug 2794] Clean up kernel clock status reports. +* [Bug 2800] refclock_true.c true_debug() can't open debug log because + of incompatible open/fdopen parameters. +* [Bug 2804] install-local-data assumes GNU 'find' semantics. +* [Bug 2806] refclock_jjy.c supports the Telephone JJY. +* [Bug 2808] GPSD_JSON driver enhancements, step 1. + Fix crash during cleanup if GPS device not present and char device. + Increase internal token buffer to parse all JSON data, even SKY. + Defer logging of errors during driver init until the first unit is + started, so the syslog is not cluttered when the driver is not used. + Various improvements, see http://bugs.ntp.org/2808 for details. + Changed libjsmn to a more recent version. +* [Bug 2810] refclock_shm.c memory barrier code needs tweaks for QNX. +* [Bug 2813] HP-UX needs -D__STDC_VERSION__=199901L and limits.h. +* [Bug 2815] net-snmp before v5.4 has circular library dependencies. +* [Bug 2821] Add a missing NTP_PRINTF and a missing const. +* [Bug 2822] New leap column in sntp broke NTP::Util.pm. +* [Bug 2825] Quiet file installation in html/ . +* [Bug 2830] ntpd doesn't always transfer the correct TAI offset via autokey + NTPD transfers the current TAI (instead of an announcement) now. + This might still needed improvement. +* Add an assert to the ntpq ifstats code. +* Clean up the RLIMIT_STACK code. +* Improve the ntpq documentation around the controlkey keyid. +* ntpq.c cleanup. +* Windows port build cleanup. +--- +(4.2.8p2) 2015/04/07 Released by Harlan Stenn +(4.2.8p2-RC3) 2015/04/03 Released by Harlan Stenn + +* [Bug 2763] Fix for different thresholds for forward and backward steps. +* Initial import of the Unity test framework. +--- +(4.2.8p2-RC2) 2015/04/03 Released by Harlan Stenn + +* [Bug 2592] FLAG_TSTAMP_PPS cleanup for refclock_parse.c. +* [Bug 2769] New script: update-leap +* [Bug 2769] cleannup for update-leap +* [Bug 2788] New flag -G (force_step_once). +* [Bug 2794] Clean up kernel clock status reports. +* [Bug 2795] Cannot build without OpenSLL (on Win32). + Provided a Win32 specific wrapper around libevent/arc4random.c. + fixed some minor warnings. +* [Bug 2796] ntp-keygen crashes in 'getclock()' on Win32. +* [Bug 2797] ntp-keygen trapped in endless loop for MD5 keys + on big-endian machines. +* [Bug 2798] sntp should decode and display the leap indicator. +* Simple cleanup to html/build.html +--- +(4.2.8p2-RC1) 2015/03/30 Released by Harlan Stenn + +* [Bug 2794] Don't let reports on normal kernel status changes + look like errors. +* [Bug 2788] New flag -G (force_step_once). +* [Bug 2592] Account for PPS sources which can provide an accurate + absolute time stamp, and status information. + Fixed indention and removed trailing whitespace. +* [Bug 1787] DCF77's formerly "antenna" bit is "call bit" since 2003. +* [Bug 1960] setsockopt IPV6_MULTICAST_IF: Invalid argument. +* [Bug 2346] "graceful termination" signals do not do peer cleanup. +* [Bug 2728] See if C99-style structure initialization works. +* [Bug 2747] Upgrade libevent to 2.1.5-beta. +* [Bug 2749] ntp/lib/NTP/Util.pm needs update for ntpq -w, IPv6, .POOL. . +* [Bug 2751] jitter.h has stale copies of l_fp macros. +* [Bug 2756] ntpd hangs in startup with gcc 3.3.5 on ARM. +* [Bug 2757] Quiet compiler warnings. +* [Bug 2759] Expose nonvolatile/clk_wander_threshold to ntpq. +* [Bug 2763] Allow different thresholds for forward and backward steps. +* [Bug 2766] ntp-keygen output files should not be world-readable. +* [Bug 2767] ntp-keygen -M should symlink to ntp.keys. +* [Bug 2771] nonvolatile value is documented in wrong units. +* [Bug 2773] Early leap announcement from Palisade/Thunderbolt +* [Bug 2774] Unreasonably verbose printout - leap pending/warning +* [Bug 2775] ntp-keygen.c fails to compile under Windows. +* [Bug 2777] Fixed loops and decoding of Meinberg GPS satellite info. + Removed non-ASCII characters from some copyright comments. + Removed trailing whitespace. + Updated definitions for Meinberg clocks from current Meinberg header files. + Now use C99 fixed-width types and avoid non-ASCII characters in comments. + Account for updated definitions pulled from Meinberg header files. + Updated comments on Meinberg GPS receivers which are not only called GPS16x. + Replaced some constant numbers by defines from ntp_calendar.h + Modified creation of parse-specific variables for Meinberg devices + in gps16x_message(). + Reworked mk_utcinfo() to avoid printing of ambiguous leap second dates. + Modified mbg_tm_str() which now expexts an additional parameter controlling + if the time status shall be printed. +* [Sec 2779] ntpd accepts unauthenticated packets with symmetric key crypto. +* [Sec 2781] Authentication doesn't protect symmetric associations against + DoS attacks. +* [Bug 2783] Quiet autoconf warnings about missing AC_LANG_SOURCE. +* [Bug 2784] Fix for 2782 uses clock_gettime() instead of get_ostime(). +* [Bug 2789] Quiet compiler warnings from libevent. +* [Bug 2790] If ntpd sets the Windows MM timer highest resolution + pause briefly before measuring system clock precision to yield + correct results. +* Comment from Juergen Perlinger in ntp_calendar.c to make the code clearer. +* Use predefined function types for parse driver functions + used to set up function pointers. + Account for changed prototype of parse_inp_fnc_t functions. + Cast parse conversion results to appropriate types to avoid + compiler warnings. + Let ioctl() for Windows accept a (void *) to avoid compiler warnings + when called with pointers to different types. +--- +(4.2.8p1) 2015/02/04 Released by Harlan Stenn + +* Update the NEWS file. +* [Sec 2671] vallen in extension fields are not validated. +--- +(4.2.8p1-RC2) 2015/01/29 Released by Harlan Stenn + +* [Bug 2627] shm refclock allows only two units with owner-only access + rework: reverted sense of mode bit (so default reflects previous + behaviour) and updated ducumentation. +* [Bug 2732] - Leap second not handled correctly on Windows 8 + use 'GetTickCount()' to get the true elapsed time of slew + (This should work for all versions of Windows >= W2K) +* [Bug 2738] Missing buffer initialization in refclocK_parse.c::parsestate(). +* [Bug 2739] Parse driver with PPS enabled occasionally evaluates + PPS timestamp with wrong sign. + Removed some German umlauts. +* [Bug 2740] Removed some obsolete code from the parse driver. +* [Bug 2741] Incorrect buffer check in refclocK_parse.c::parsestatus(). +--- +(4.2.8p1-RC1) 2015/01/24 Released by Harlan Stenn + +* Start the RC for 4.2.8p1. +* [Bug 2187] Update version number generation scripts. +* [Bug 2617] Fix sntp Usage documentation section. +* [Sec 2672] Code cleanup: On some OSes ::1 can be spoofed... +* [Bug 2736] Show error message if we cannot open the config file. +* Copyright update. +* Fix the package name. +--- +(4.2.8p1-beta5) 2015/01/07 Released by Harlan Stenn + +* [Bug 2695] Windows build: __func__ not supported under Windows. +* [Bug 2728] Work around C99-style structure initialization code + for older compilers, specifically Visual Studio prior to VS2013. +--- +(4.2.8p1-beta4) 2015/01/04 Released by Harlan Stenn + +* [Bug 1084] PPSAPI for ntpd on Windows with DLL backends +* [Bug 2695] Build problem on Windows (sys/socket.h). +* [Bug 2715] mdnstries option for ntp.conf from NetBSD. +* Fix a regression introduced to timepps-Solaris.h as part of: + [Bug 1206] Required compiler changes for Windows + (4.2.5p181) 2009/06/06 +--- +(4.2.8p1-beta3) 2015/01/02 Released by Harlan Stenn + +* [Bug 2627] shm refclock allows only two units with owner-only access + Use mode bit 0 to select public access for units >= 2 (units 0 & 1 are + always private. +* [Bug 2681] Fix display of certificate EOValidity dates on 32-bit systems. +* [Bug 2695] 4.2.8 does not build on Windows. +* [bug 2700] mrulist stopped working in 4.2.8. +* [Bug 2706] libparse/info_trimble.c build dependencies are broken. +* [Bug 2713] variable type/cast, parameter name, general cleanup from NetBSD. +* [Bug 2714] libevent may need to be built independently of any build of sntp. +* [Bug 2715] mdnstries option for ntp.conf from NetBSD. +--- +(4.2.8p1-beta2) 2014/12/27 Released by Harlan Stenn + +* [Bug 2674] Install sntp in sbin on NetBSD. +* [Bug 2693] ntp-keygen doesn't build without OpenSSL and sntp. +* [Bug 2707] Avoid a C90 extension in libjsmn/jsmn.c. +* [Bug 2709] see if we have a C99 compiler (not yet required). +--- +(4.2.8p1-beta1) 2014/12/23 Released by Harlan Stenn + +* [Sec 2672] On some OSes ::1 can be spoofed, bypassing source IP ACLs. +* [Bug 2693] ntp-keygen doesn't build without OpenSSL. +* [Bug 2697] IN6_IS_ADDR_LOOPBACK build problems on some OSes. +* [Bug 2699] HAVE_SYS_SELECT_H is misspelled in refclock_gpsdjson.c. +--- +(4.2.8) 2014/12/19 Released by Harlan Stenn + +* [Sec 730] Increase RSA_generate_key modulus. +* [Sec 2666] Use cryptographic random numbers for md5 key generation. +* [Sec 2667] buffer overflow in crypto_recv(). +* [Sec 2668] buffer overflow in ctl_putdata(). +* [Sec 2669] buffer overflow in configure(). +* [Sec 2670] Missing return; from error clause. +* [Sec 2671] vallen in extension fields are not validated. +* [Sec 2672] On some OSes ::1 can be spoofed, bypassing source IP ACLs. +* [Bug 2691] Wrong variable name in refclock_ripencc.c. +(4.2.7p486-RC) 2014/12/18 Released by Harlan Stenn +* [Bug 2687] RefClock 26/hpgps doesn't work at default line speed +(4.2.7p485-RC) 2014/12/12 Released by Harlan Stenn +* [Bug 2686] refclock_gpsdjson needs strtoll(), which is not always present. +(4.2.7p484-RC) 2014/12/11 Released by Harlan Stenn +(4.2.7p483) 2014/12/08 Released by Harlan Stenn +* [Bug 2685] Better document the KOD file for sntp. +(4.2.7p482) 2014/12/02 Released by Harlan Stenn +* [Bug 2641] sntp is installed in the wrong location in Solaris. +* [Bug 2678] nmea_control() now checks 'refclock_params()' result. +(4.2.7p481) 2014/11/22 Released by Harlan Stenn +* [Bug 2314] Only enable PPS if kernel consumer binding succeeds. +* [Bug 2314] Kernel PPS binding EOPNOTSUPP is a failure condition. +* Rename pps_enable to hardpps_enable. +(4.2.7p480) 2014/11/21 Released by Harlan Stenn +* [Bug 2677] PATH_MAX isn't #define'd under Windows. + Regression from the patch fixing Bug 2639. +(4.2.7p479) 2014/11/15 Released by Harlan Stenn +* [Bug 2651] Certificates with ASN timestamps w/ 4-digit years mis-parsed. +(4.2.7p478) 2014/11/14 Released by Harlan Stenn +* [Sec 2630] buffer overrun in ntpq tokenize(). +* [Bug 2639] Check return value of ntp_adjtime(). +* [Bug 2650] includefile processing broken. +* [Bug 2661] ntpq crashes with mreadvar. +(4.2.7p477) 2014/11/13 Released by Harlan Stenn +* [Bug 2657] Document that "restrict nopeer" intereferes with "pool". +(4.2.7p476) 2014/10/08 Released by Harlan Stenn +* [Bug 2503] SHT utility outdated +(4.2.7p475) 2014/09/11 Released by Harlan Stenn +* [Bug 2654] refclock_true.c doesn't identify the Mk III. +(4.2.7p474) 2014/09/10 Released by Harlan Stenn +* [Bug 2536] ntpd sandboxing support (libseccomp2) cleanup. +* [Bug 2649] Clean up html/ page installation. +(4.2.7p473) 2014/09/06 Released by Harlan Stenn +* [Bug 2649] Clean up html/ page installation. +(4.2.7p472) 2014/09/06 Released by Harlan Stenn +* [Bug 2556] mrulist is missing from the generated ntpq man page. +(4.2.7p471) 2014/09/05 Released by Harlan Stenn +* [Bug 2649] "make install" leaves wrong owner for files in html/. +* [Bug 2652] Windows hates directory names that contain a :. +(4.2.7p470) 2014/09/02 Released by Harlan Stenn +* [Bug 2502] Autogen text replacement errors. +* autogen-5.18.5pre1 +* html/ cleanups from Hal Murray. +(4.2.7p469) 2014/09/01 Released by Harlan Stenn +* [Bug 2536] ntpd sandboxing support (libseccomp2) cleanup. +(4.2.7p468) 2014/08/31 Released by Harlan Stenn +* [Bug 2556] ntpq man page cleanup. +* autogen-5.18.4 +(4.2.7p467) 2014/08/28 Released by Harlan Stenn +* [Bug 2639] Check return value of ntp_adjtime(). +* [Bug 2640] STA_NANO can result in invalid ntv.constant. +(4.2.7p466) 2014/08/27 Released by Harlan Stenn +* [Bug 2536] ntpd sandboxing support (libseccomp2) cleanup. +(4.2.7p465) 2014/08/23 Released by Harlan Stenn +* [Bug 2538] NTP programs print exit code in help/usage text. +* [Bug 2595] Man page quirks: ntpdate references in ntpd. +* [Bug 2613] www.ntp.org/bugs.html tells folks to email doc bugs to DLM. +* [Bug 2636] Clutter in syslog if gpsd not running + - found (hopefully) last cause for clutter in protocol version + - log GPSD revision and release numbers with protocol version +(4.2.7p464) 2014/08/22 Released by Harlan Stenn +* [Bug 2636] Fix coverity warning from previous patch. +(4.2.7p463) 2014/08/21 Released by Harlan Stenn +* [Bug 2636] Clutter in syslog if gpsd not running + - make driver work with GPSD protocol version 3.9 + - use exponential back-off for connection problems + - implement rate-limit for syslog entries +(4.2.7p462) 2014/08/16 Released by Harlan Stenn +* [Bug 2622] Synchronisation problem using SHM [...] + Add 'control' function -- fudge values not available during start. +(4.2.7p461) 2014/08/14 Released by Harlan Stenn +* [Bug 1128] ntpq truncates "remote" host information. +* More autogen-5.18.4pre14 cleanup. +(4.2.7p460) 2014/08/13 Released by Harlan Stenn +* More autogen-5.18.4pre14 cleanup. +(4.2.7p459) 2014/08/12 Released by Harlan Stenn +* [Bug 2630] Limit the ntpq command buffer to 512 bytes. +* FlexeLint cleanups. +* Try bison-3.0.2 instead of bison-2.5. +(4.2.7p458) 2014/08/11 Released by Harlan Stenn +* [Bug 2633] Provide stdnoreturn.h for windows port. +(4.2.7p457) 2014/08/09 Released by Harlan Stenn +* [Bug 2622] Synchronisation problem using SHM when time difference is + more than four hours: Change SHM driver so TOY restricted API is not + used any more. (Plus some minor cleanup in logic and flow control) +* Pass the configration source into the parser as argument rather + than through a global variable. +* Fix nits in the ntpq man page. +* autogen-5.18.4pre14 +(4.2.7p456) 2014/08/07 Released by Harlan Stenn +* CID 739722: Change the way the extention and MAC fields are processed. +(4.2.7p455) 2014/08/03 Released by Harlan Stenn +* [Bug 2565] ntpd sometimes logs unexpected getifaddrs() errors. +* CID 739722: Clean up the definition of the exten field of struct pkt. +(4.2.7p454) 2014/07/30 Released by Harlan Stenn +* [Bug 2628] 'mon_getmoremem()' relies on undefined behaviour +(4.2.7p453) 2014/07/19 Released by Harlan Stenn +* [Bug 2597] leap file loose ends (follow-up) + - uniform expiration check messages for config and timer triggered + leap file loads + - timer triggered loads log messages only once per day +(4.2.7p452) 2014/07/18 Released by Harlan Stenn +* Make all of the html/ .html files use the same format for "Last update". +(4.2.7p451) 2014/07/17 Released by Harlan Stenn +* Fix the "Last update" entries in the html/ subtree. +(4.2.7p450) 2014/07/16 Released by Harlan Stenn +* Distribute the scripts needed for the fix for Bug 2547. +(4.2.7p449) 2014/07/16 Released by Harlan Stenn +* [Bug 2547] Automate update of "Last Update" datestamps in .html files. +* [Bug 2623] Missing {} in refclock_oncore.c. +* Quiet warnings from ntp_calendar.h: avoid using argument names. +* Fix typos in decode.html and debug.html . +(4.2.7p448) 2014/07/15 Released by Harlan Stenn +* [Bug 2621] Avoid use of indeterminate address after 'free()' + (minor C standard conformance issue) +* Quiet warnings from ntp_calendar.h: avoid using argument names. +(4.2.7p447) 2014/07/05 Released by Harlan Stenn +* [Bug 2620] Use version.pm for checking version numbers in NTP::Util. +* [Bug 2624] Fix signed compare on 'l_fp'. +(4.2.7p446) 2014/06/28 Released by Harlan Stenn +* [Bug 2597] leap file processing -- loose ends. +* [Bug 2614] use 'unsigned long' consistently in ntp_random.c + to avoid possibly undefined behaviour in signed int overflow +* [Bug 2619] Save a signed int copy of the return value of i2d_DSA_SIG(). + Provide missing msyslog() message in crypto_alice(). +* Fix a variable lifetime issue. +* Allow for version suffix in libevent in ntp_libevent.m4. +(4.2.7p445) 2014/06/12 Released by Harlan Stenn +* [Bug 2556] mrulist isn't mentioned in the ntpq man page. +(4.2.7p444) 2014/05/19 Released by Harlan Stenn +* [Bug 2597] leap file processing -- loose ends + fixed coverity issues +(4.2.7p443) 2014/05/10 Released by Harlan Stenn +* [Bug 2594] Update the year in sntp/include/copyright.def. +(4.2.7p442) 2014/05/09 Released by Harlan Stenn +* [Bug 2589] Update VS2013 project files for libntp. +* [Bug 2600] Fix "Undisicplined Local Clock" driver1.html page. +(4.2.7p441) 2014/05/04 Released by Harlan Stenn +* [Bug 2597] leap file processing -- loose ends + log daily warning when leap info less than 28 days to expiration or + already expired; nag hourly on last day before expiration; log when + leapfile name is invalid +(4.2.7p440) 2014/04/09 Released by Harlan Stenn +* [Bug 2536] ntpd sandboxing support (libseccomp2) cleanup. +* [Bug 2570] cleanup: fix log format for successful leapfile load +(4.2.7p439) 2014/04/03 Released by Harlan Stenn +* [Bug 2589] fix VS2009 compile problem. +(4.2.7p438) 2014/04/01 Released by Harlan Stenn +* [Bug 2546] Windows build documentation updates. +(4.2.7p437) 2014/03/31 Released by Harlan Stenn +* [Bug 2537] ntpd truncates symmetric keys to 20 bytes. +* [Bug 2546] Documentation updates. +(4.2.7p436) 2014/03/31 Released by Harlan Stenn +* Update to libopts-40.2.15, and autogen-5.18.3pre18. +* [Bug 2311] Add more tags to mdoc2xxx. +* [Bug 2502] Assorted text replacement errors in 4.2.7p345 +* [Bug 2538] ntp programs print exit code as part of the "usage" text. +(4.2.7p435) 2014/03/29 Released by Harlan Stenn +* [Bug 2570] cleanup: reduced logging noise, moved some functions + into libntp. +(4.2.7p434) 2014/03/21 Released by Harlan Stenn +* [Bug 2577] Update VS2013 solution and project files. +(4.2.7p433) 2014/03/10 Released by Harlan Stenn +* Clean up last-update timestamps of html/*.html files. +* [Bug 2546] Documentation updates. +(4.2.7p432) 2014/03/09 Released by Harlan Stenn +* CID 711660: Do a non-NULL pointer assertion check a bit earlier. +(4.2.7p431) 2014/03/05 Released by Harlan Stenn +* [Bug 2572] cross-compiling fails for --with-yielding-select. +(4.2.7p430) 2014/03/04 Released by Harlan Stenn +* Upgrade to libevent-2.1.3-alpha-dev. +* [Bug 2572] cross-compiling fails for --with-yielding-select. +(4.2.7p429) 2014/03/03 Released by Harlan Stenn +* CID 1165098: Remove logically dead code from refclock_true.c. +* CID 1189401: Use INSIST() instead of a belt-and-suspenders pointer check. +* In ntp_dir_sep.m4, we care about $host_os, not $target_os. +* [Bug 2170] Use AC_PREPROC_IFELSE instead of AC_EGREP_CPP. +* [Bug 2540] bootstrap script needs to 'touch' files in finer-grained groups. +* [Bug 2570] refuse to load leapsec file with bad/missing SHA1 hash + -- change reading the hash line code: NIST omits leading zeros. +* [Bug 2576] refclock_gpsdjson.c doesn't compile if CLOCK_GPSDJSON is + not enabled at configure time. +(4.2.7p428) 2014/03/03 Released by Harlan Stenn +* [Bug 2570] refuse to load leapsec file with bad/missing SHA1 hash +* [Bug 2562] Distribute the code in libjsmn/ . +(4.2.7p427) 2014/03/02 Released by Harlan Stenn +* [Bug 2562] GPSD_JSON: fix solaris issues (asprintf(), isfinite()) +* [Bug 2562] first release of the GPSD client clock (type 46) +(4.2.7p426) 2014/02/28 Released by Harlan Stenn +* [Bug 2113] Warn about ignored extra args in ntpq. +* [Bug 2540] bootstrap script needs to 'touch' files in finer-grained groups. +* [Bug 2561] Allow wildcards in the target of the "interface" command. +* [Bug 2572] cross-compiling fails for --with-yielding_select. +(4.2.7p425) 2014/02/26 Released by Harlan Stenn +* Copyright file update. *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-stable-9@freebsd.org Tue Oct 27 03:02:50 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 42AA4A1DC0A; Tue, 27 Oct 2015 03:02:50 +0000 (UTC) (envelope-from vangyzen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0E38E1937; Tue, 27 Oct 2015 03:02:49 +0000 (UTC) (envelope-from vangyzen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9R32nnu022511; Tue, 27 Oct 2015 03:02:49 GMT (envelope-from vangyzen@FreeBSD.org) Received: (from vangyzen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9R32nnc022510; Tue, 27 Oct 2015 03:02:49 GMT (envelope-from vangyzen@FreeBSD.org) Message-Id: <201510270302.t9R32nnc022510@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vangyzen set sender to vangyzen@FreeBSD.org using -f From: Eric van Gyzen Date: Tue, 27 Oct 2015 03:02:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r290037 - stable/9/etc/rc.d X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Oct 2015 03:02:50 -0000 Author: vangyzen Date: Tue Oct 27 03:02:48 2015 New Revision: 290037 URL: https://svnweb.freebsd.org/changeset/base/290037 Log: MFC r289186: Fix indentation in etc/rc.d/fsck. Modified: stable/9/etc/rc.d/fsck Directory Properties: stable/9/etc/ (props changed) stable/9/etc/rc.d/ (props changed) Modified: stable/9/etc/rc.d/fsck ============================================================================== --- stable/9/etc/rc.d/fsck Tue Oct 27 02:52:05 2015 (r290036) +++ stable/9/etc/rc.d/fsck Tue Oct 27 03:02:48 2015 (r290037) @@ -20,7 +20,7 @@ fsck_start() elif [ ! -r /etc/fstab ]; then echo "Warning! No /etc/fstab: skipping disk checks." elif [ "$autoboot" = yes ]; then - # During fsck ignore SIGQUIT + # During fsck ignore SIGQUIT trap : 3 check_startmsgs && echo "Starting file system checks:" From owner-svn-src-stable-9@freebsd.org Tue Oct 27 07:23:41 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D6F83A1E8E8; Tue, 27 Oct 2015 07:23:41 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 904E71AAF; Tue, 27 Oct 2015 07:23:41 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9R7Ne9F096445; Tue, 27 Oct 2015 07:23:40 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9R7NecJ096442; Tue, 27 Oct 2015 07:23:40 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510270723.t9R7NecJ096442@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Tue, 27 Oct 2015 07:23:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r290041 - in stable/9/contrib/nvi: common include X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Oct 2015 07:23:42 -0000 Author: ngie Date: Tue Oct 27 07:23:40 2015 New Revision: 290041 URL: https://svnweb.freebsd.org/changeset/base/290041 Log: MFC r250667: r250667 (by jh): Rename O_DIRECTORY to O_TMP_DIRECTORY to avoid shadowing the fcntl.h O_DIRECTORY flag. PR: bin/173924 Obtained from: git://repo.or.cz/nvi.git Modified: stable/9/contrib/nvi/common/exf.c stable/9/contrib/nvi/common/options.c stable/9/contrib/nvi/include/options_def.h Directory Properties: stable/9/ (props changed) stable/9/contrib/ (props changed) stable/9/contrib/nvi/ (props changed) Modified: stable/9/contrib/nvi/common/exf.c ============================================================================== --- stable/9/contrib/nvi/common/exf.c Tue Oct 27 07:08:47 2015 (r290040) +++ stable/9/contrib/nvi/common/exf.c Tue Oct 27 07:23:40 2015 (r290041) @@ -187,10 +187,10 @@ file_init(sp, frp, rcv_name, flags) */ oname = frp->name; if (LF_ISSET(FS_OPENERR) || oname == NULL || !exists) { - if (opts_empty(sp, O_DIRECTORY, 0)) + if (opts_empty(sp, O_TMP_DIRECTORY, 0)) goto err; (void)snprintf(tname, sizeof(tname), - "%s/vi.XXXXXXXXXX", O_STR(sp, O_DIRECTORY)); + "%s/vi.XXXXXXXXXX", O_STR(sp, O_TMP_DIRECTORY)); if ((fd = mkstemp(tname)) == -1) { msgq(sp, M_SYSERR, "237|Unable to create temporary file"); Modified: stable/9/contrib/nvi/common/options.c ============================================================================== --- stable/9/contrib/nvi/common/options.c Tue Oct 27 07:08:47 2015 (r290040) +++ stable/9/contrib/nvi/common/options.c Tue Oct 27 07:23:40 2015 (r290041) @@ -64,7 +64,7 @@ OPTLIST const optlist[] = { {"columns", f_columns, OPT_NUM, OPT_NOSAVE}, /* O_COMMENT 4.4BSD */ {"comment", NULL, OPT_0BOOL, 0}, -/* O_DIRECTORY 4BSD */ +/* O_TMP_DIRECTORY 4BSD */ {"directory", NULL, OPT_STR, 0}, /* O_EDCOMPATIBLE 4BSD */ {"edcompatible",NULL, OPT_0BOOL, 0}, @@ -244,7 +244,7 @@ static OABBREV const abbrev[] = { {"aw", O_AUTOWRITE}, /* 4BSD */ {"bf", O_BEAUTIFY}, /* 4BSD */ {"co", O_COLUMNS}, /* 4.4BSD */ - {"dir", O_DIRECTORY}, /* 4BSD */ + {"dir", O_TMP_DIRECTORY}, /* 4BSD */ {"eb", O_ERRORBELLS}, /* 4BSD */ {"ed", O_EDCOMPATIBLE}, /* 4BSD */ {"ex", O_EXRC}, /* System V (undocumented) */ @@ -347,7 +347,7 @@ opts_init(sp, oargs) */ (void)snprintf(b1, sizeof(b1), "directory=%s", (s = getenv("TMPDIR")) == NULL ? _PATH_TMP : s); - OI(O_DIRECTORY, b1); + OI(O_TMP_DIRECTORY, b1); OI(O_ESCAPETIME, "escapetime=6"); OI(O_KEYTIME, "keytime=6"); OI(O_MATCHTIME, "matchtime=7"); Modified: stable/9/contrib/nvi/include/options_def.h ============================================================================== --- stable/9/contrib/nvi/include/options_def.h Tue Oct 27 07:08:47 2015 (r290040) +++ stable/9/contrib/nvi/include/options_def.h Tue Oct 27 07:23:40 2015 (r290041) @@ -8,7 +8,7 @@ #define O_CEDIT 7 #define O_COLUMNS 8 #define O_COMMENT 9 -#define O_DIRECTORY 10 +#define O_TMP_DIRECTORY 10 #define O_EDCOMPATIBLE 11 #define O_ESCAPETIME 12 #define O_ERRORBELLS 13 From owner-svn-src-stable-9@freebsd.org Tue Oct 27 12:03:15 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DD79183F1; Tue, 27 Oct 2015 12:03:15 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A8C6A1DFE; Tue, 27 Oct 2015 12:03:15 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9RC3EK2077019; Tue, 27 Oct 2015 12:03:14 GMT (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9RC3E9w077018; Tue, 27 Oct 2015 12:03:14 GMT (envelope-from glebius@FreeBSD.org) Message-Id: <201510271203.t9RC3E9w077018@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: glebius set sender to glebius@FreeBSD.org using -f From: Gleb Smirnoff Date: Tue, 27 Oct 2015 12:03:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r290044 - stable/9/usr.sbin/ntp/ntpq X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Oct 2015 12:03:16 -0000 Author: glebius Date: Tue Oct 27 12:03:14 2015 New Revision: 290044 URL: https://svnweb.freebsd.org/changeset/base/290044 Log: Link ntpq with pthread. PR: 204046 Submitted by: truckman Modified: stable/9/usr.sbin/ntp/ntpq/Makefile Modified: stable/9/usr.sbin/ntp/ntpq/Makefile ============================================================================== --- stable/9/usr.sbin/ntp/ntpq/Makefile Tue Oct 27 09:43:05 2015 (r290043) +++ stable/9/usr.sbin/ntp/ntpq/Makefile Tue Oct 27 12:03:14 2015 (r290044) @@ -20,8 +20,8 @@ CFLAGS+= -I${.CURDIR}/../../../contrib/n -I${.CURDIR}/../../../contrib/ntp/sntp/libopts \ -I${.CURDIR}/../ -DPADD= ${LIBEDIT} ${LIBNTP} ${LIBM} ${LIBOPTS} -LDADD= -ledit ${LIBNTP} -lm ${LIBOPTS} +DPADD= ${LIBEDIT} ${LIBNTP} ${LIBM} ${LIBOPTS} ${LIBPTHREAD} +LDADD= -ledit ${LIBNTP} -lm ${LIBOPTS} -lpthread .if ${MK_OPENSSL} != "no" DPADD+= ${LIBCRYPTO} From owner-svn-src-stable-9@freebsd.org Tue Oct 27 12:42:29 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5682EA1E186; Tue, 27 Oct 2015 12:42:29 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D3FF13DA; Tue, 27 Oct 2015 12:42:29 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9RCgSln088443; Tue, 27 Oct 2015 12:42:28 GMT (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9RCgS1b088442; Tue, 27 Oct 2015 12:42:28 GMT (envelope-from glebius@FreeBSD.org) Message-Id: <201510271242.t9RCgS1b088442@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: glebius set sender to glebius@FreeBSD.org using -f From: Gleb Smirnoff Date: Tue, 27 Oct 2015 12:42:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r290046 - stable/9/usr.sbin/ntp/ntpdc X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Oct 2015 12:42:29 -0000 Author: glebius Date: Tue Oct 27 12:42:27 2015 New Revision: 290046 URL: https://svnweb.freebsd.org/changeset/base/290046 Log: Link ntpdc with pthread. Modified: stable/9/usr.sbin/ntp/ntpdc/Makefile Modified: stable/9/usr.sbin/ntp/ntpdc/Makefile ============================================================================== --- stable/9/usr.sbin/ntp/ntpdc/Makefile Tue Oct 27 12:21:15 2015 (r290045) +++ stable/9/usr.sbin/ntp/ntpdc/Makefile Tue Oct 27 12:42:27 2015 (r290046) @@ -17,8 +17,8 @@ CFLAGS+= -I${.CURDIR}/../../../contrib/n -I${.CURDIR}/../../../lib/libc/${MACHINE_ARCH} \ -I${.CURDIR}/../ -I${.CURDIR} -DPADD= ${LIBNTP} ${LIBM} ${LIBOPTS} ${LIBEDIT} ${LIBTERMCAP} -LDADD= ${LIBNTP} -lm ${LIBOPTS} -ledit -ltermcap +DPADD= ${LIBNTP} ${LIBM} ${LIBOPTS} ${LIBEDIT} ${LIBTERMCAP} ${LIBPTHREAD} +LDADD= ${LIBNTP} -lm ${LIBOPTS} -ledit -ltermcap -lpthread CFLAGS+= -DHAVE_LIBEDIT -DHAVE_READLINE_READLINE_H \ -I${DESTDIR}/${INCLUDEDIR}/edit From owner-svn-src-stable-9@freebsd.org Thu Oct 29 17:04:45 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6B04CA2068F; Thu, 29 Oct 2015 17:04:45 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 29DBF13AF; Thu, 29 Oct 2015 17:04:45 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9TH4igG069835; Thu, 29 Oct 2015 17:04:44 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9TH4htf069829; Thu, 29 Oct 2015 17:04:43 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201510291704.t9TH4htf069829@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Thu, 29 Oct 2015 17:04:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r290151 - stable/9/share/timedef X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2015 17:04:45 -0000 Author: delphij Date: Thu Oct 29 17:04:43 2015 New Revision: 290151 URL: https://svnweb.freebsd.org/changeset/base/290151 Log: MFC r289038,r289041: Add encoding for mime-types. Fix short month names and replace %b with %_m in date_fmt for Chinese locales. When using a Chinese locale, such as zh_TW.UTF-8 or zh_CN.UTF-8, nl_langinfo(ABMON_*) only returned numbers. For instance, nl_langinfo(ABMON_1) returns 1, nl_langinfo(ABMON_2) returns 2, and so on. This causes problems in applications that put the short month name and the day of the month together. For example, 'Apr 14' in English becomes '414æ—¥' in Chinese on the top bar of GNOME Shell. This problem may be resolved by appending '月' to all short month names and replacing %b with %_m in date_fmt. ja_JP.UTF-8 already does this, and this matches the en_US.ISO8859-1 behavior, which returns 'Oct'. The GNU C Library also returns values with '月' appended. PR: 199441 Submitted by: Ting-Wei Lan Modified: stable/9/share/timedef/zh_CN.GB18030.src (contents, props changed) stable/9/share/timedef/zh_CN.GB2312.src (contents, props changed) stable/9/share/timedef/zh_CN.UTF-8.src (contents, props changed) stable/9/share/timedef/zh_CN.eucCN.src (contents, props changed) stable/9/share/timedef/zh_TW.Big5.src (contents, props changed) stable/9/share/timedef/zh_TW.UTF-8.src (contents, props changed) Directory Properties: stable/9/share/timedef/ (props changed) Modified: stable/9/share/timedef/zh_CN.GB18030.src ============================================================================== --- stable/9/share/timedef/zh_CN.GB18030.src Thu Oct 29 17:00:51 2015 (r290150) +++ stable/9/share/timedef/zh_CN.GB18030.src Thu Oct 29 17:04:43 2015 (r290151) @@ -5,18 +5,18 @@ # # Short month names # - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 -10 -11 -12 + 1Ô + 2Ô + 3Ô + 4Ô + 5Ô + 6Ô + 7Ô + 8Ô + 9Ô +10Ô +11Ô +12Ô # # Long month names (as in a date) # @@ -75,7 +75,7 @@ # # date_fmt # -%YÄê%bÔÂ%eÈÕ %A %X %Z +%YÄê%_mÔÂ%eÈÕ %A %X %Z # # Long month names (without case ending) # Modified: stable/9/share/timedef/zh_CN.GB2312.src ============================================================================== --- stable/9/share/timedef/zh_CN.GB2312.src Thu Oct 29 17:00:51 2015 (r290150) +++ stable/9/share/timedef/zh_CN.GB2312.src Thu Oct 29 17:04:43 2015 (r290151) @@ -5,18 +5,18 @@ # # Short month names # - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 -10 -11 -12 + 1Ô + 2Ô + 3Ô + 4Ô + 5Ô + 6Ô + 7Ô + 8Ô + 9Ô +10Ô +11Ô +12Ô # # Long month names (as in a date) # @@ -75,7 +75,7 @@ # # date_fmt # -%YÄê%bÔÂ%eÈÕ %A %X %Z +%YÄê%_mÔÂ%eÈÕ %A %X %Z # # Long month names (without case ending) # Modified: stable/9/share/timedef/zh_CN.UTF-8.src ============================================================================== --- stable/9/share/timedef/zh_CN.UTF-8.src Thu Oct 29 17:00:51 2015 (r290150) +++ stable/9/share/timedef/zh_CN.UTF-8.src Thu Oct 29 17:04:43 2015 (r290151) @@ -5,18 +5,18 @@ # # Short month names # - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 -10 -11 -12 + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 +10月 +11月 +12月 # # Long month names (as in a date) # @@ -75,7 +75,7 @@ # # date_fmt # -%Yå¹´%b月%eæ—¥ %A %X %Z +%Yå¹´%_m月%eæ—¥ %A %X %Z # # Long month names (without case ending) # Modified: stable/9/share/timedef/zh_CN.eucCN.src ============================================================================== --- stable/9/share/timedef/zh_CN.eucCN.src Thu Oct 29 17:00:51 2015 (r290150) +++ stable/9/share/timedef/zh_CN.eucCN.src Thu Oct 29 17:04:43 2015 (r290151) @@ -5,18 +5,18 @@ # # Short month names # - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 -10 -11 -12 + 1Ô + 2Ô + 3Ô + 4Ô + 5Ô + 6Ô + 7Ô + 8Ô + 9Ô +10Ô +11Ô +12Ô # # Long month names (as in a date) # @@ -75,7 +75,7 @@ # # date_fmt # -%YÄê%bÔÂ%eÈÕ %A %X %Z +%YÄê%_mÔÂ%eÈÕ %A %X %Z # # Long month names (without case ending) # Modified: stable/9/share/timedef/zh_TW.Big5.src ============================================================================== --- stable/9/share/timedef/zh_TW.Big5.src Thu Oct 29 17:00:51 2015 (r290150) +++ stable/9/share/timedef/zh_TW.Big5.src Thu Oct 29 17:04:43 2015 (r290151) @@ -4,18 +4,18 @@ # WARNING: empty lines are essential too # # Short month names - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 -10 -11 -12 + 1¤ë + 2¤ë + 3¤ë + 4¤ë + 5¤ë + 6¤ë + 7¤ë + 8¤ë + 9¤ë +10¤ë +11¤ë +12¤ë # # Long month names (as in a date) # @@ -74,7 +74,7 @@ # # date_fmt # -%Y¦~%b¤ë%e¤é %A %X %Z +%Y¦~%_m¤ë%e¤é %A %X %Z # # Long month names (without case ending) # Modified: stable/9/share/timedef/zh_TW.UTF-8.src ============================================================================== --- stable/9/share/timedef/zh_TW.UTF-8.src Thu Oct 29 17:00:51 2015 (r290150) +++ stable/9/share/timedef/zh_TW.UTF-8.src Thu Oct 29 17:04:43 2015 (r290151) @@ -4,18 +4,18 @@ # WARNING: empty lines are essential too # # Short month names - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 -10 -11 -12 + 1月 + 2月 + 3月 + 4月 + 5月 + 6月 + 7月 + 8月 + 9月 +10月 +11月 +12月 # # Long month names (as in a date) # @@ -74,7 +74,7 @@ # # date_fmt # -%Yå¹´%b月%eæ—¥ %A %X %Z +%Yå¹´%_m月%eæ—¥ %A %X %Z # # Long month names (without case ending) # From owner-svn-src-stable-9@freebsd.org Fri Oct 30 13:05:40 2015 Return-Path: Delivered-To: svn-src-stable-9@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 98702A2185C; Fri, 30 Oct 2015 13:05:40 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 622001517; Fri, 30 Oct 2015 13:05:40 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9UD5d4d024365; Fri, 30 Oct 2015 13:05:39 GMT (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9UD5d2T024364; Fri, 30 Oct 2015 13:05:39 GMT (envelope-from glebius@FreeBSD.org) Message-Id: <201510301305.t9UD5d2T024364@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: glebius set sender to glebius@FreeBSD.org using -f From: Gleb Smirnoff Date: Fri, 30 Oct 2015 13:05:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r290194 - stable/9/sys/vm X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Oct 2015 13:05:40 -0000 Author: glebius Date: Fri Oct 30 13:05:39 2015 New Revision: 290194 URL: https://svnweb.freebsd.org/changeset/base/290194 Log: MFC r287591 by kib: There is no reason in the current kernel to disallow write access to the COW wired entry if the entry permissions allow it. Remove the check. Modified: stable/9/sys/vm/vm_map.c Directory Properties: stable/9/sys/ (props changed) Modified: stable/9/sys/vm/vm_map.c ============================================================================== --- stable/9/sys/vm/vm_map.c Fri Oct 30 12:37:40 2015 (r290193) +++ stable/9/sys/vm/vm_map.c Fri Oct 30 13:05:39 2015 (r290194) @@ -3878,12 +3878,10 @@ RetryLookup:; vm_map_unlock_read(map); return (KERN_PROTECTION_FAILURE); } - if ((entry->eflags & MAP_ENTRY_USER_WIRED) && - (entry->eflags & MAP_ENTRY_COW) && - (fault_type & VM_PROT_WRITE)) { - vm_map_unlock_read(map); - return (KERN_PROTECTION_FAILURE); - } + KASSERT((prot & VM_PROT_WRITE) == 0 || (entry->eflags & + (MAP_ENTRY_USER_WIRED | MAP_ENTRY_NEEDS_COPY)) != + (MAP_ENTRY_USER_WIRED | MAP_ENTRY_NEEDS_COPY), + ("entry %p flags %x", entry, entry->eflags)); if ((fault_typea & VM_PROT_COPY) != 0 && (entry->max_protection & VM_PROT_WRITE) == 0 && (entry->eflags & MAP_ENTRY_COW) == 0) { @@ -4037,10 +4035,6 @@ vm_map_lookup_locked(vm_map_t *var_map, fault_type &= VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE; if ((fault_type & prot) != fault_type) return (KERN_PROTECTION_FAILURE); - if ((entry->eflags & MAP_ENTRY_USER_WIRED) && - (entry->eflags & MAP_ENTRY_COW) && - (fault_type & VM_PROT_WRITE)) - return (KERN_PROTECTION_FAILURE); /* * If this page is not pageable, we have to get it for all possible