summaryrefslogtreecommitdiffstats
path: root/irc
diff options
context:
space:
mode:
Diffstat (limited to 'irc')
-rw-r--r--irc/sic/files/patch-aa10
-rw-r--r--irc/sic/files/patch-ab28
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 0000000..c2d9922
--- /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 0000000..5985ab5
--- /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.
+ */
OpenPOWER on IntegriCloud