Remove accidentally included test code for recursive wildcard feature

darcs-hash:20051129101414-ac50b-929f0b9928bbed8a485699c66e1b4e3e8cedcfdc.gz
This commit is contained in:
axel 2005-11-29 20:14:14 +10:00
parent 02981a1750
commit fc8b56da0d

View File

@ -79,12 +79,6 @@ static int wildcard_match2( const wchar_t *str,
{
if( wildcard_match2( str, wc+1, 0 ) )
return 1;
if( *wc == ANY_STRING_RECURSIVE
&& ( wildcard_match2(str+1, wc, 0) || wildcard_match2(str+1, wc+1, 0) ) ) {
return 1;
}
}
while( *(str++) != 0 );