summaryrefslogtreecommitdiff
path: root/net/gopher/files/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'net/gopher/files/patch-ab')
-rw-r--r--net/gopher/files/patch-ab31
1 files changed, 0 insertions, 31 deletions
diff --git a/net/gopher/files/patch-ab b/net/gopher/files/patch-ab
deleted file mode 100644
index cfc380516471..000000000000
--- a/net/gopher/files/patch-ab
+++ /dev/null
@@ -1,31 +0,0 @@
---- ./object/util.c.orig Tue Dec 19 17:19:20 2000
-+++ ./object/util.c Sat Jan 26 02:16:51 2002
-@@ -584,28 +584,6 @@
-
-
- /*
-- * String insensitive strstr
-- */
--
--char *
--strcasestr(char *inputline, char *match)
--{
-- int matchlen=0;
-- int i, inlen;
--
-- matchlen = strlen(match);
-- inlen = strlen(inputline);
--
-- for(i=0; i<inlen; i++) {
-- if (strncasecmp(inputline+i, match, matchlen)==0)
-- return(inputline+i);
-- }
--
-- return(NULL);
--}
--
--
--/*
- * Iterate over a string, return a pointer to the next character
- * that isn't whitespace.
- */