From 6e6f71e38c40d8b37a4152eb8f52e932beb84cc0 Mon Sep 17 00:00:00 2001 From: kris Date: Mon, 1 Apr 2002 03:34:32 +0000 Subject: Remove internal strcasestr implementation to fix build. --- irc/sic/files/patch-aa | 10 ++++++++++ irc/sic/files/patch-ab | 28 ++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 irc/sic/files/patch-aa create mode 100644 irc/sic/files/patch-ab (limited to 'irc/sic') 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. + */ -- cgit