diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-04-01 03:34:32 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-04-01 03:34:32 +0000 |
commit | 35f00aea99d23f37b75d51fab314f71085de2b50 (patch) | |
tree | 016911d720520945618f196e19e01ce053cd0f16 /irc/sic | |
parent | eccc8292fd6dfac841c0fee32e9a15c9c88de140 (diff) | |
download | ports-35f00aea99d23f37b75d51fab314f71085de2b50.tar.gz ports-35f00aea99d23f37b75d51fab314f71085de2b50.zip |
Notes
Diffstat (limited to 'irc/sic')
-rw-r--r-- | irc/sic/files/patch-aa | 10 | ||||
-rw-r--r-- | irc/sic/files/patch-ab | 28 |
2 files changed, 38 insertions, 0 deletions
diff --git a/irc/sic/files/patch-aa b/irc/sic/files/patch-aa new file mode 100644 index 000000000000..c2d9922594aa --- /dev/null +++ b/irc/sic/files/patch-aa @@ -0,0 +1,10 @@ +--- utils.h.orig Sun Mar 31 19:33:07 2002 ++++ utils.h Sun Mar 31 19:33:11 2002 +@@ -7,7 +7,6 @@ + #ifndef _utils_h_ + #define _utils_h_ + +-extern char * strcasestr(const char *, const char *); + extern int rmatch(const char *, const char *); + extern char * my_cftime(char *, const int len, const char *, const time_t); + extern char * my_strftime(char *, const int len, const char *); diff --git a/irc/sic/files/patch-ab b/irc/sic/files/patch-ab new file mode 100644 index 000000000000..5985ab50b7e6 --- /dev/null +++ b/irc/sic/files/patch-ab @@ -0,0 +1,28 @@ +--- utils.c.orig Sun Mar 31 19:32:45 2002 ++++ utils.c Sun Mar 31 19:32:55 2002 +@@ -12,25 +12,6 @@ + + #include "os.h" + +-/* strcasestr: case insensitive version of strstr() */ +-char * +-strcasestr(s1, s2) +- char *s1, *s2; +-{ +- int len; +- +- assert( s1 && s2 ); +- +- len = strlen(s2); +- while (*s1) +- { +- if (!strncasecmp(s1, s2, len)) +- return s1; +- s1++; +- } +- return NULL; +-} +- + /* match: some lame version + * returns 0 if no match. + */ |