fix error I made when porting over DB's refactored search code: the

strstr() call used in forward case-sensitive searches was using the
wrong variable, which made all such searches fail


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1689 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2004-03-07 21:16:18 +00:00
parent 35557c555c
commit 2a464cb07d
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ const char *strstrwrapper(const char *haystack, const char *needle,
return revstrstr(haystack, needle, start); return revstrstr(haystack, needle, start);
else else
#endif #endif
return strstr(haystack, needle); return strstr(start, needle);
} }
#endif /* !DISABLE_SPELLER || !NANO_SMALL */ #endif /* !DISABLE_SPELLER || !NANO_SMALL */
#ifndef NANO_SMALL #ifndef NANO_SMALL