HuntnGather

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 14  →  ?path2? @ 15
/trunk/HuntnGather/Hunt/Hunt.c
@@ -55,8 +55,10 @@
int success;
UBYTE *pattern;
 
#if !defined ___NOCASE_FS___
strupr(need);
strupr(name);
#endif
 
size = strlen(need) * 3;
 
@@ -81,8 +83,13 @@
 
success = FALSE;
 
success = (strstr(strupr(name), strupr(need)) != NULL);
#if !defined ___NOCASE_FS___
strupr(need);
strupr(name);
#endif
 
success = (strstr(name, need) != NULL);
 
free(upe);
free(upn);
return success;