Skip to content

Commit

Permalink
this time, actually commit the matchpattgern fix
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9005 d7cf8633-e32d-0410-b094-e92efae38249
  • Loading branch information
divverent committed Jun 2, 2009
1 parent 17f6da9 commit 2e45eab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filematch.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ int matchpattern_with_separator(const char *in, const char *pattern, int caseins
if (strchr(separators, *in))
break;
// see if pattern matches at this offset
if (matchpattern(in, pattern, caseinsensitive))
if (matchpattern_with_separator(in, pattern, caseinsensitive, separators, wildcard_least_one))
return 1;
// nope, advance to next offset
in++;
Expand Down

0 comments on commit 2e45eab

Please sign in to comment.