diff options
author | Cy Schubert <cy@FreeBSD.org> | 2004-08-11 01:23:30 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2004-08-11 01:23:30 +0000 |
commit | 9c8c8608b970c8a484ec9f022c142b4ab7d5fb89 (patch) | |
tree | 936883b8a2f87a82be01afa4bdbb6470ddc4c527 /net/ntp-devel/files/patch-aa | |
parent | Correct a check for gconf2 presence that was causing gconf.xml.defaults to (diff) |
NTP development branch has been dormant for a long time. This port does not
currently serve any purpose. It will be resurrected when NTP development
resumes.
Notes
Notes:
svn path=/head/; revision=115878
Diffstat (limited to 'net/ntp-devel/files/patch-aa')
-rw-r--r-- | net/ntp-devel/files/patch-aa | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/net/ntp-devel/files/patch-aa b/net/ntp-devel/files/patch-aa deleted file mode 100644 index 2b418488de44..000000000000 --- a/net/ntp-devel/files/patch-aa +++ /dev/null @@ -1,38 +0,0 @@ ---- ntpd/ntp_control.c.orig Mon Apr 9 13:19:56 2001 -+++ ntpd/ntp_control.c Wed Apr 11 20:53:28 2001 -@@ -1823,7 +1823,7 @@ - * Delete leading commas and white space - */ - while (reqpt < reqend && (*reqpt == ',' || -- isspace((int)*reqpt))) -+ isspace((unsigned char)*reqpt))) - reqpt++; - if (reqpt >= reqend) - return (0); -@@ -1846,7 +1846,7 @@ - tp++; - } - if ((*tp == '\0') || (*tp == '=')) { -- while (cp < reqend && isspace((int)*cp)) -+ while (cp < reqend && isspace((unsigned char)*cp)) - cp++; - if (cp == reqend || *cp == ',') { - buf[0] = '\0'; -@@ -1859,7 +1859,7 @@ - if (*cp == '=') { - cp++; - tp = buf; -- while (cp < reqend && isspace((int)*cp)) -+ while (cp < reqend && isspace((unsigned char)*cp)) - cp++; - while (cp < reqend && *cp != ',') { - *tp++ = *cp++; -@@ -1870,7 +1870,7 @@ - cp++; - while (tp > buf) { - *tp-- = '\0'; -- if (!isspace((int)(*tp))) -+ if (!isspace((unsigned char)(*tp))) - break; - } - reqpt = cp; |