summaryrefslogtreecommitdiff
path: root/net/ns2/files/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'net/ns2/files/patch-ab')
-rw-r--r--net/ns2/files/patch-ab32
1 files changed, 0 insertions, 32 deletions
diff --git a/net/ns2/files/patch-ab b/net/ns2/files/patch-ab
deleted file mode 100644
index 54be008b310b..000000000000
--- a/net/ns2/files/patch-ab
+++ /dev/null
@@ -1,32 +0,0 @@
---- indep-utils/webtrace-conv/ucb/utils.cc.orig Tue May 28 17:14:30 2002
-+++ indep-utils/webtrace-conv/ucb/utils.cc Tue May 28 17:14:39 2002
-@@ -56,29 +56,6 @@
- #include "utils.h"
-
- /*
-- * Case-insensitive version of strstr()
-- */
--
--
--const char *
--strcasestr(const char *string, const char *substr)
--{
-- int str_len, substr_len, cmplen, i;
-- const char *ptr;
--
-- str_len = strlen(string);
-- substr_len = strlen(substr);
-- cmplen = str_len - substr_len + 1;
--
-- for (ptr = string, i=0; i<cmplen; i++, ptr++) {
-- if (strncasecmp(ptr, substr, substr_len) == 0)
-- return ptr;
-- }
-- return NULL;
--}
--
--
--/*
- ************* Dump out the hexification of the buffer ***********
- */
- void dump_buf(FILE *std, char *buf, int retlen)