CVS commit: [netbsd-7] src/external/bsd/ntp/dist/sntp/libopts

2015-11-30 Thread Havard Eidnes
Module Name:src
Committed By:   he
Date:   Mon Nov 30 10:31:04 UTC 2015

Modified Files:
src/external/bsd/ntp/dist/sntp/libopts [netbsd-7]: enum.c

Log Message:
As far as I (and my compiler) can tell, there's no need to cast
the arg to strncmp().


To generate a diff of this commit:
cvs rdiff -u -r1.2.6.2 -r1.2.6.3 \
src/external/bsd/ntp/dist/sntp/libopts/enum.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/ntp/dist/sntp/libopts/enum.c
diff -u src/external/bsd/ntp/dist/sntp/libopts/enum.c:1.2.6.2 src/external/bsd/ntp/dist/sntp/libopts/enum.c:1.2.6.3
--- src/external/bsd/ntp/dist/sntp/libopts/enum.c:1.2.6.2	Sun Nov  8 01:51:12 2015
+++ src/external/bsd/ntp/dist/sntp/libopts/enum.c	Mon Nov 30 10:31:04 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: enum.c,v 1.2.6.2 2015/11/08 01:51:12 riz Exp $	*/
+/*	$NetBSD: enum.c,v 1.2.6.3 2015/11/30 10:31:04 he Exp $	*/
 
 
 /**
@@ -217,7 +217,7 @@ find_name(char const * name, tOptions * 
  *  Multiple partial matches means we have an ambiguous match.
  */
 for (idx = 0; idx < name_ct; idx++) {
-if (strncmp(paz_names[idx], (const char *)name, len) == 0) {
+if (strncmp(paz_names[idx], name, len) == 0) {
 if (paz_names[idx][len] == NUL)
 return idx;  /* full match */
 



CVS commit: [netbsd-7] src/external/bsd/ntp/dist/sntp/libopts

2015-11-30 Thread Havard Eidnes
Module Name:src
Committed By:   he
Date:   Mon Nov 30 10:32:06 UTC 2015

Modified Files:
src/external/bsd/ntp/dist/sntp/libopts [netbsd-7]: enum.c

Log Message:
Wrong branch, backing out.


To generate a diff of this commit:
cvs rdiff -u -r1.2.6.3 -r1.2.6.4 \
src/external/bsd/ntp/dist/sntp/libopts/enum.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/ntp/dist/sntp/libopts/enum.c
diff -u src/external/bsd/ntp/dist/sntp/libopts/enum.c:1.2.6.3 src/external/bsd/ntp/dist/sntp/libopts/enum.c:1.2.6.4
--- src/external/bsd/ntp/dist/sntp/libopts/enum.c:1.2.6.3	Mon Nov 30 10:31:04 2015
+++ src/external/bsd/ntp/dist/sntp/libopts/enum.c	Mon Nov 30 10:32:06 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: enum.c,v 1.2.6.3 2015/11/30 10:31:04 he Exp $	*/
+/*	$NetBSD: enum.c,v 1.2.6.4 2015/11/30 10:32:06 he Exp $	*/
 
 
 /**
@@ -217,7 +217,7 @@ find_name(char const * name, tOptions * 
  *  Multiple partial matches means we have an ambiguous match.
  */
 for (idx = 0; idx < name_ct; idx++) {
-if (strncmp(paz_names[idx], name, len) == 0) {
+if (strncmp(paz_names[idx], (const char *)name, len) == 0) {
 if (paz_names[idx][len] == NUL)
 return idx;  /* full match */
 



CVS commit: [netbsd-7] src/external/bsd/ntp/scripts

2015-11-17 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Tue Nov 17 19:09:08 UTC 2015

Modified Files:
src/external/bsd/ntp/scripts [netbsd-7]: mkver

Log Message:
Pull up following revision(s) (requested by christos in ticket #1036):
external/bsd/ntp/scripts/mkver: revision 1.8
PR/50426: Dave Tyson: Fix ntp reported version.


To generate a diff of this commit:
cvs rdiff -u -r1.4.4.3 -r1.4.4.4 src/external/bsd/ntp/scripts/mkver

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/ntp/scripts/mkver
diff -u src/external/bsd/ntp/scripts/mkver:1.4.4.3 src/external/bsd/ntp/scripts/mkver:1.4.4.4
--- src/external/bsd/ntp/scripts/mkver:1.4.4.3	Sun Nov  8 01:51:18 2015
+++ src/external/bsd/ntp/scripts/mkver	Tue Nov 17 19:09:08 2015
@@ -3,7 +3,7 @@ PROG=${1-UNKNOWN}
 
 ConfStr="$PROG"
 
-ConfStr="$ConfStr 4.2.8p3"
+ConfStr="$ConfStr 4.2.8p4"
 
 case "$CSET" in
  '') ;;



CVS commit: [netbsd-7] src/external/bsd/ntp

2015-11-08 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Sun Nov  8 23:28:05 UTC 2015

Modified Files:
src/external/bsd/ntp [netbsd-7]: Makefile.inc

Log Message:
Apply additional patch (requested by christos in ticket #1024):
-D__syslog__=__printf__


To generate a diff of this commit:
cvs rdiff -u -r1.14.2.1 -r1.14.2.2 src/external/bsd/ntp/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/ntp/Makefile.inc
diff -u src/external/bsd/ntp/Makefile.inc:1.14.2.1 src/external/bsd/ntp/Makefile.inc:1.14.2.2
--- src/external/bsd/ntp/Makefile.inc:1.14.2.1	Wed Dec 24 00:05:04 2014
+++ src/external/bsd/ntp/Makefile.inc	Sun Nov  8 23:28:05 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.inc,v 1.14.2.1 2014/12/24 00:05:04 riz Exp $
+#	$NetBSD: Makefile.inc,v 1.14.2.2 2015/11/08 23:28:05 riz Exp $
 
 .if !defined(NTP_MAKEFILE_INC)
 NTP_MAKEFILE_INC=yes
@@ -22,6 +22,7 @@ NTP_HTMLDIR=	/usr/share/doc/reference/re
 SYSCONFDIR=/etc
 LOCALSTATEDIR=/var
 
+CPPFLAGS+=-D__syslog__=__printf__
 CPPFLAGS+=-DHAVE_CONFIG_H
 CPPFLAGS+=-I${NTP_SRCDIR}/include \
 	  -I${IDIST}/include \



CVS commit: [netbsd-7] src/external/bsd/ntp

2015-11-07 Thread Jeff Rizzo
Module Name:src
Committed By:   riz
Date:   Sun Nov  8 01:51:18 UTC 2015

Modified Files:
src/external/bsd/ntp/dist [netbsd-7]: Makefile.am Makefile.in NEWS
aclocal.m4 bootstrap config.h.in configure configure.ac
packageinfo.sh
src/external/bsd/ntp/dist/adjtimed [netbsd-7]: Makefile.in adjtimed.c
src/external/bsd/ntp/dist/clockstuff [netbsd-7]: Makefile.in chutest.c
propdelay.c
src/external/bsd/ntp/dist/html [netbsd-7]: decode.html miscopt.html
refclock.html stats.html
src/external/bsd/ntp/dist/html/drivers [netbsd-7]: driver22.html
driver40.html driver46.html
src/external/bsd/ntp/dist/include [netbsd-7]: Makefile.am Makefile.in
ntp_assert.h ntp_calendar.h ntp_config.h ntp_control.h ntp_io.h
ntp_lists.h ntp_stdlib.h ntp_syslog.h ntp_types.h ntpd.h parse.h
src/external/bsd/ntp/dist/include/isc [netbsd-7]: Makefile.in
src/external/bsd/ntp/dist/kernel [netbsd-7]: Makefile.in
src/external/bsd/ntp/dist/kernel/sys [netbsd-7]: Makefile.in
src/external/bsd/ntp/dist/lib/isc/unix [netbsd-7]: ifiter_getifaddrs.c
src/external/bsd/ntp/dist/libjsmn [netbsd-7]: Makefile README.md jsmn.c
jsmn.h jsmn_test.c
src/external/bsd/ntp/dist/libntp [netbsd-7]: Makefile.am Makefile.in
atolfp.c audio.c authkeys.c authreadkeys.c caljulian.c caltontp.c
decodenetnum.c emalloc.c icom.c machines.c msyslog.c ntp_calendar.c
ntp_intres.c ntp_lineedit.c ntp_rfc2553.c ntp_worker.c prettydate.c
recvbuff.c socket.c socktohost.c statestr.c strdup.c work_fork.c
src/external/bsd/ntp/dist/libparse [netbsd-7]: Makefile.in
clk_meinberg.c clk_rawdcf.c clk_schmid.c parse.c
src/external/bsd/ntp/dist/ntpd [netbsd-7]: Makefile.am Makefile.in
complete.conf.in invoke-ntp.conf.texi invoke-ntp.keys.texi
invoke-ntpd.texi keyword-gen-utd keyword-gen.c ntp.conf.5man
ntp.conf.5mdoc ntp.conf.def ntp.conf.html ntp.conf.man.in
ntp.conf.mdoc.in ntp.keys.5man ntp.keys.5mdoc ntp.keys.html
ntp.keys.man.in ntp.keys.mdoc.in ntp_config.c ntp_control.c
ntp_crypto.c ntp_io.c ntp_keyword.h ntp_leapsec.c ntp_leapsec.h
ntp_loopfilter.c ntp_monitor.c ntp_parser.y ntp_peer.c ntp_proto.c
ntp_refclock.c ntp_request.c ntp_restrict.c ntp_scanner.c
ntp_scanner.h ntp_timer.c ntpd-opts.c ntpd-opts.def ntpd-opts.h
ntpd.1ntpdman ntpd.1ntpdmdoc ntpd.c ntpd.html ntpd.man.in
ntpd.mdoc.in refclock_arc.c refclock_chu.c refclock_gpsdjson.c
refclock_jjy.c refclock_jupiter.c refclock_local.c refclock_nmea.c
refclock_oncore.c refclock_palisade.c refclock_parse.c
refclock_shm.c refclock_true.c refclock_wwv.c
src/external/bsd/ntp/dist/ntpdate [netbsd-7]: Makefile.in ntpdate.c
src/external/bsd/ntp/dist/ntpdc [netbsd-7]: Makefile.in
invoke-ntpdc.texi ntpdc-opts.c ntpdc-opts.h ntpdc.1ntpdcman
ntpdc.1ntpdcmdoc ntpdc.c ntpdc.html ntpdc.man.in ntpdc.mdoc.in
src/external/bsd/ntp/dist/ntpq [netbsd-7]: Makefile.in invoke-ntpq.texi
libntpq.h ntpq-opts.c ntpq-opts.def ntpq-opts.h ntpq-subs.c
ntpq.1ntpqman ntpq.1ntpqmdoc ntpq.c ntpq.html ntpq.man.in
ntpq.mdoc.in
src/external/bsd/ntp/dist/ntpsnmpd [netbsd-7]: Makefile.in
invoke-ntpsnmpd.texi ntpsnmpd-opts.c ntpsnmpd-opts.h
ntpsnmpd.1ntpsnmpdman ntpsnmpd.1ntpsnmpdmdoc ntpsnmpd.html
ntpsnmpd.man.in ntpsnmpd.mdoc.in
src/external/bsd/ntp/dist/parseutil [netbsd-7]: Makefile.in dcfd.c
testdcf.c
src/external/bsd/ntp/dist/scripts [netbsd-7]: Makefile.in
invoke-plot_summary.texi invoke-summary.texi plot_summary-opts
plot_summary.1plot_summaryman plot_summary.1plot_summarymdoc
plot_summary.html plot_summary.man.in plot_summary.mdoc.in
summary-opts summary.1summaryman summary.1summarymdoc summary.html
summary.man.in summary.mdoc.in
src/external/bsd/ntp/dist/scripts/build [netbsd-7]: Makefile.in
src/external/bsd/ntp/dist/scripts/calc_tickadj [netbsd-7]: Makefile.in
calc_tickadj.1calc_tickadjman calc_tickadj.1calc_tickadjmdoc
calc_tickadj.html calc_tickadj.man.in calc_tickadj.mdoc.in
invoke-calc_tickadj.texi
src/external/bsd/ntp/dist/scripts/lib [netbsd-7]: Makefile.in
src/external/bsd/ntp/dist/scripts/lib/NTP [netbsd-7]: Util.pm
src/external/bsd/ntp/dist/scripts/ntp-wait [netbsd-7]: Makefile.in
invoke-ntp-wait.texi ntp-wait-opts ntp-wait.1ntp-waitman
ntp-wait.1ntp-waitmdoc ntp-wait.html ntp-wait.man.in
ntp-wait.mdoc.in
src/external/bsd/ntp/dist/scripts/ntpsweep [netbsd-7]: Makefile.in

CVS commit: [netbsd-7] src/external/bsd/ntp

2015-04-23 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Thu Apr 23 18:53:08 UTC 2015

Modified Files:
src/external/bsd/ntp [netbsd-7]: importdate ntp2netbsd
src/external/bsd/ntp/dist [netbsd-7]: COPYRIGHT ChangeLog CommitLog
Makefile.am Makefile.in NEWS aclocal.m4 build config.h.in configure
configure.ac packageinfo.sh readme.y2kfixes
src/external/bsd/ntp/dist/adjtimed [netbsd-7]: Makefile.in
src/external/bsd/ntp/dist/clockstuff [netbsd-7]: Makefile.in
src/external/bsd/ntp/dist/html [netbsd-7]: build.html confopt.html
copyright.html miscopt.html sntp.html
src/external/bsd/ntp/dist/html/drivers [netbsd-7]: driver28.html
src/external/bsd/ntp/dist/include [netbsd-7]: Makefile.in binio.h
mbg_gps166.h ntp.h ntp_calendar.h ntp_fp.h ntp_md5.h ntpd.h parse.h
parse_conf.h timepps-Solaris.h
src/external/bsd/ntp/dist/include/isc [netbsd-7]: Makefile.in
src/external/bsd/ntp/dist/kernel [netbsd-7]: Makefile.in
src/external/bsd/ntp/dist/kernel/sys [netbsd-7]: Makefile.in
parsestreams.h
src/external/bsd/ntp/dist/lib/isc [netbsd-7]: inet_ntop.c log.c
result.c
src/external/bsd/ntp/dist/lib/isc/include/isc [netbsd-7]: backtrace.h
socket.h
src/external/bsd/ntp/dist/lib/isc/unix [netbsd-7]: file.c
ifiter_getifaddrs.c ifiter_ioctl.c net.c
src/external/bsd/ntp/dist/libjsmn [netbsd-7]: jsmn.c
src/external/bsd/ntp/dist/libntp [netbsd-7]: Makefile.in audio.c
ntp_calendar.c ntp_crypto_rnd.c work_fork.c
src/external/bsd/ntp/dist/libparse [netbsd-7]: Makefile.am Makefile.in
clk_computime.c clk_dcf7000.c clk_hopf6021.c clk_meinberg.c
clk_rawdcf.c clk_rcc8000.c clk_schmid.c clk_sel240x.c
clk_trimtaip.c clk_trimtsip.c clk_varitext.c clk_wharton.c
data_mbg.c gpstolfp.c info_trimble.c mkinfo_rcmd.sed
mkinfo_scmd.sed parse.c parse_conf.c parsesolaris.c parsestreams.c
trim_info.c
src/external/bsd/ntp/dist/ntpd [netbsd-7]: Makefile.am Makefile.in
cmd_args.c invoke-ntp.conf.texi invoke-ntp.keys.texi
invoke-ntpd.texi keyword-gen-utd keyword-gen.c ntp.conf.5man
ntp.conf.5mdoc ntp.conf.def ntp.conf.html ntp.conf.man.in
ntp.conf.mdoc.in ntp.keys.5man ntp.keys.5mdoc ntp.keys.html
ntp.keys.man.in ntp.keys.mdoc.in ntp_config.c ntp_control.c
ntp_crypto.c ntp_io.c ntp_keyword.h ntp_leapsec.c ntp_loopfilter.c
ntp_parser.y ntp_peer.c ntp_proto.c ntp_util.c ntpd-opts.c
ntpd-opts.h ntpd.1ntpdman ntpd.1ntpdmdoc ntpd.c ntpd.html
ntpd.man.in ntpd.mdoc.in ntpdbase-opts.def refclock_gpsdjson.c
refclock_nmea.c refclock_palisade.c refclock_palisade.h
refclock_parse.c refclock_shm.c
src/external/bsd/ntp/dist/ntpdate [netbsd-7]: Makefile.in
src/external/bsd/ntp/dist/ntpdc [netbsd-7]: Makefile.in
invoke-ntpdc.texi ntpdc-opts.c ntpdc-opts.h ntpdc.1ntpdcman
ntpdc.1ntpdcmdoc ntpdc.html ntpdc.man.in ntpdc.mdoc.in
src/external/bsd/ntp/dist/ntpq [netbsd-7]: Makefile.in invoke-ntpq.texi
ntpq-opts.c ntpq-opts.h ntpq-subs.c ntpq.1ntpqman ntpq.1ntpqmdoc
ntpq.html ntpq.man.in ntpq.mdoc.in
src/external/bsd/ntp/dist/ntpsnmpd [netbsd-7]: Makefile.in
invoke-ntpsnmpd.texi netsnmp_daemonize.c ntp_snmp.h ntpsnmpd-opts.c
ntpsnmpd-opts.h ntpsnmpd.1ntpsnmpdman ntpsnmpd.1ntpsnmpdmdoc
ntpsnmpd.html ntpsnmpd.man.in ntpsnmpd.mdoc.in
src/external/bsd/ntp/dist/parseutil [netbsd-7]: Makefile.in dcfd.c
testdcf.c
src/external/bsd/ntp/dist/scripts [netbsd-7]: Makefile.am Makefile.in
invoke-plot_summary.texi invoke-summary.texi plot_summary-opts
plot_summary.1plot_summaryman plot_summary.1plot_summarymdoc
plot_summary.html plot_summary.man.in plot_summary.mdoc.in
summary-opts summary.1summaryman summary.1summarymdoc summary.html
summary.man.in summary.mdoc.in
src/external/bsd/ntp/dist/scripts/build [netbsd-7]: Makefile.in
UpdatePoint VersionName
src/external/bsd/ntp/dist/scripts/calc_tickadj [netbsd-7]: Makefile.in
calc_tickadj.1calc_tickadjman calc_tickadj.1calc_tickadjmdoc
calc_tickadj.html calc_tickadj.man.in calc_tickadj.mdoc.in
invoke-calc_tickadj.texi
src/external/bsd/ntp/dist/scripts/lib [netbsd-7]: Makefile.in
src/external/bsd/ntp/dist/scripts/lib/NTP [netbsd-7]: Util.pm
src/external/bsd/ntp/dist/scripts/ntp-wait [netbsd-7]: Makefile.in
invoke-ntp-wait.texi ntp-wait-opts ntp-wait.1ntp-waitman
ntp-wait.1ntp-waitmdoc ntp-wait.html ntp-wait.man.in
ntp-wait.mdoc.in
src/external/bsd/ntp/dist/scripts/ntpsweep