diff options
Diffstat (limited to 'net/ntp-devel/files')
-rw-r--r-- | net/ntp-devel/files/patch-ntpd__ntp.conf.5man | 24 | ||||
-rw-r--r-- | net/ntp-devel/files/patch-ntpd__ntp.conf.html | 11 | ||||
-rw-r--r-- | net/ntp-devel/files/patch-ntpd__refclock__mx4200.c | 25 | ||||
-rw-r--r-- | net/ntp-devel/files/patch-ntpd__refclock__ripencc.c | 38 | ||||
-rw-r--r-- | net/ntp-devel/files/patch-sntp_sntp.mdoc.in | 11 | ||||
-rw-r--r-- | net/ntp-devel/files/pkg-message.in | 7 |
6 files changed, 0 insertions, 116 deletions
diff --git a/net/ntp-devel/files/patch-ntpd__ntp.conf.5man b/net/ntp-devel/files/patch-ntpd__ntp.conf.5man deleted file mode 100644 index c91b31bbbeef..000000000000 --- a/net/ntp-devel/files/patch-ntpd__ntp.conf.5man +++ /dev/null @@ -1,24 +0,0 @@ ---- ntpd/ntp.conf.5man.orig 2016-06-02 06:41:03.000000000 -0700 -+++ ntpd/ntp.conf.5man 2017-03-07 22:54:39.255862000 -0800 -@@ -22,12 +22,6 @@ - \- Network Time Protocol (NTP) daemon configuration file format - .SH SYNOPSIS - \f\*[B-Font]ntp.conf\fP --[\f\*[B-Font]\-\-option-name\f[]] --[\f\*[B-Font]\-\-option-name\f[] \f\*[I-Font]value\f[]] --.sp \n(Ppu --.ne 2 -- --All arguments must be options. - .sp \n(Ppu - .ne 2 - -@@ -190,7 +184,7 @@ - .NOP \f\*[B-Font]pool\f[] - For type s addresses, this command mobilizes a persistent - client mode association with a number of remote servers. --In this mode the local clock can synchronized to the -+In this mode the local clock can be synchronized to the - remote server, but the remote server can never be synchronized to - the local clock. - .TP 7 diff --git a/net/ntp-devel/files/patch-ntpd__ntp.conf.html b/net/ntp-devel/files/patch-ntpd__ntp.conf.html deleted file mode 100644 index f2fb17af9799..000000000000 --- a/net/ntp-devel/files/patch-ntpd__ntp.conf.html +++ /dev/null @@ -1,11 +0,0 @@ ---- ntpd/ntp.conf.html.orig 2016-11-21 05:01:54.000000000 -0800 -+++ ntpd/ntp.conf.html 2017-01-01 10:49:36.866561000 -0800 -@@ -210,7 +210,7 @@ - <dl> - <dt><code>pool</code><dd>For type s addresses, this command mobilizes a persistent - client mode association with a number of remote servers. --In this mode the local clock can synchronized to the -+In this mode the local clock can be synchronized to the - remote server, but the remote server can never be synchronized to - the local clock. - <br><dt><code>server</code><dd>For type s and r addresses, this command mobilizes a persistent diff --git a/net/ntp-devel/files/patch-ntpd__refclock__mx4200.c b/net/ntp-devel/files/patch-ntpd__refclock__mx4200.c deleted file mode 100644 index f0181520b7c3..000000000000 --- a/net/ntp-devel/files/patch-ntpd__refclock__mx4200.c +++ /dev/null @@ -1,25 +0,0 @@ ---- ntpd/refclock_mx4200.c.orig 2014-12-19 11:56:52 UTC -+++ ntpd/refclock_mx4200.c -@@ -1572,7 +1572,7 @@ mx4200_debug(struct peer *peer, char *fm - * Print debug message to stdout - * In the future, we may want to get get more creative... - */ -- mvprintf(fmt, ap); -+ vprintf(fmt, ap); - - va_end(ap); - } -@@ -1613,11 +1613,11 @@ mx4200_send(peer, fmt, va_alist) - - cp = buf; - *cp++ = '$'; -- n = VSNPRINTF((cp, sizeof(buf) - 1, fmt, ap)); -+ n = vsnprintf(cp, sizeof(buf) - 1, fmt, ap); - ck = mx4200_cksum(cp, n); - cp += n; - ++n; -- n += SNPRINTF((cp, sizeof(buf) - n - 5, "*%02X\r\n", ck)); -+ n += snprintf(cp, sizeof(buf) - n - 5, "*%02X\r\n", ck); - - m = write(pp->io.fd, buf, (unsigned)n); - if (m < 0) diff --git a/net/ntp-devel/files/patch-ntpd__refclock__ripencc.c b/net/ntp-devel/files/patch-ntpd__refclock__ripencc.c deleted file mode 100644 index d6f134dfd89f..000000000000 --- a/net/ntp-devel/files/patch-ntpd__refclock__ripencc.c +++ /dev/null @@ -1,38 +0,0 @@ ---- ntpd/refclock_ripencc.c.orig 2014-12-18 18:42:01.000000000 -0800 -+++ ntpd/refclock_ripencc.c 2017-11-23 19:41:57.473988000 -0800 -@@ -1517,7 +1517,7 @@ - - record_clock_stats(&peer->srcadr, logbuf); - -- if (!utcflags & UTCF_UTC_AVAIL) -+ if (!(utcflags & UTCF_UTC_AVAIL)) - return(-1); - - /* poll for UTC parameters once and then if UTC flag changed */ -@@ -3442,7 +3442,7 @@ - status1, status2; - const char - *text; -- static const char const -+ static const char - *sc_text[] = { - "Doing position fixes", - "Don't have GPS time yet", -@@ -4442,8 +4442,6 @@ - known = TRUE; - } - if (known == FALSE) pbuf += sprintf(pbuf, "No known"); -- reserved = reserved; -- - } - - /* 0x8F */ -@@ -5059,7 +5057,7 @@ - { - for (i=0; i<8; i++) - { -- if (Flags&(1<<i)) pbuf += sprintf(pbuf, LeapStatusText[i]); -+ if (Flags&(1<<i)) pbuf += sprintf(pbuf, " %s", LeapStatusText[i]); - } - } - else diff --git a/net/ntp-devel/files/patch-sntp_sntp.mdoc.in b/net/ntp-devel/files/patch-sntp_sntp.mdoc.in deleted file mode 100644 index 08e35a8241f2..000000000000 --- a/net/ntp-devel/files/patch-sntp_sntp.mdoc.in +++ /dev/null @@ -1,11 +0,0 @@ ---- sntp/sntp.mdoc.in.orig 2016-06-02 11:20:05 UTC -+++ sntp/sntp.mdoc.in -@@ -211,7 +211,7 @@ of seconds specified before giving up. - more than enough for a unicast response. If \fBsntp\fP is - only waiting for a broadcast response a longer timeout is - likely needed. --.It Fl \-wait , " Fl \-no\-wait" -+.It Fl \-wait , Fl \-no\-wait - Wait for pending replies (if not setting the time). - The \fIno\-wait\fP form will disable the option. - This option is enabled by default. diff --git a/net/ntp-devel/files/pkg-message.in b/net/ntp-devel/files/pkg-message.in deleted file mode 100644 index 9798b4e781b5..000000000000 --- a/net/ntp-devel/files/pkg-message.in +++ /dev/null @@ -1,7 +0,0 @@ -Please add - - ntpd_program="%%PREFIX%%/sbin/ntpd" - ntpdate_program="%%PREFIX%%/sbin/ntpdate" - -to your /etc/rc.conf to enable ntp from ports/packages instead -of base ntp. |