summaryrefslogtreecommitdiff
path: root/news/newsx/files/patch-an
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2002-02-23 14:23:48 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2002-02-23 14:23:48 +0000
commitfa774241a5468136e0c6af9f99c473ca59d05c1f (patch)
tree02fe8d992790da50083522426ac2a24b69ac1d5d /news/newsx/files/patch-an
parentFix build with postgresql 7.2 (some .h files have moved). (diff)
Upgrade to the last release. This release is basically for bug fixes.
It supports inn's storage manager => no more ugly patches! PR: 34503 Submitted by: thierry@pompo.net
Diffstat (limited to 'news/newsx/files/patch-an')
-rw-r--r--news/newsx/files/patch-an25
1 files changed, 0 insertions, 25 deletions
diff --git a/news/newsx/files/patch-an b/news/newsx/files/patch-an
deleted file mode 100644
index 24435366db36..000000000000
--- a/news/newsx/files/patch-an
+++ /dev/null
@@ -1,25 +0,0 @@
---- src/filter.c.orig Mon Nov 23 07:25:48 1998
-+++ src/filter.c Wed Jan 24 06:37:22 2001
-@@ -40,6 +40,22 @@
- static int filter_open = 0;
- static SOCKET_D filter_sock; /* BUG: no... */
-
-+#ifndef HAVE_STRTOUL
-+/*
-+ * for systems that doesn't have it, assuming base<=10
-+ */
-+long
-+strtoul(char *str,char **endptr,int base)
-+{
-+ long u = 0L;
-+ char c;
-+ while (isspace(*str)) ++str;
-+ while (isdigit(c = *str++)) u = u*base + c-'0';
-+ if (endptr) *endptr = str;
-+ return u;
-+}
-+#endif
-+
- /*
- * start the program if not active already
- */