--- src/lib/libc/string/strcasestr.c 2004/10/25 19:38:02 1.3 +++ src/lib/libc/string/strcasestr.c 2005/09/18 16:32:34 1.4 @@ -44,8 +44,7 @@ * Find the first occurrence of find in s, ignore case. */ char * -strcasestr(s, find) - const char *s, *find; +strcasestr(const char *s, const char *find) { char c, sc; size_t len;