summaryrefslogtreecommitdiff
path: root/mail/autorespond/files/patch-autorespond.c
blob: b4c74f42c4681669ab86ae506ec80c01980c237b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- autorespond.c	Thu Feb  7 12:07:44 2002
+++ autorespond.c	Thu Feb  7 12:07:59 2002
@@ -377,6 +377,7 @@
 /*********************************************************
 ** find string in string - ignore case **/
 
+#ifdef NEED_STRCASESTR
 char *strcasestr( char *_s1, char *_s2 )
 {
 	char *s1;
@@ -399,7 +400,7 @@
 	else
 		return _s1 + (ptr - s1);
 }
-
+#endif