diff options
author | Daichi GOTO <daichi@FreeBSD.org> | 2003-07-08 11:47:07 +0000 |
---|---|---|
committer | Daichi GOTO <daichi@FreeBSD.org> | 2003-07-08 11:47:07 +0000 |
commit | 22507c2d49bfc6e565b5617700a415e822150641 (patch) | |
tree | a81c2ebb36879ac124830340d6bf5f440ce55cb6 /net/ns/files/patch-ab | |
parent | Fix 'distinfo' file. (diff) |
update net/ns: 2.1.b9 -> 2.26
PR: 54069
Submitted by: Clement Laforet <sheepkiller@cultdeadsheep.org>
Notes
Notes:
svn path=/head/; revision=84470
Diffstat (limited to 'net/ns/files/patch-ab')
-rw-r--r-- | net/ns/files/patch-ab | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/net/ns/files/patch-ab b/net/ns/files/patch-ab deleted file mode 100644 index 54be008b310b..000000000000 --- a/net/ns/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) |