Changeset 1413 for trunk/dll/select.c
- Timestamp:
- Apr 24, 2009, 11:51:13 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/select.c
r1304 r1413 229 229 pszToMatch = file; 230 230 if (*Mask.pszMasks[x] != '/') { 231 if (wildcard(pszToMatch, Mask.pszMasks[x], FALSE)) {231 if (wildcard(pszToMatch, Mask.pszMasks[x], TRUE)) { 232 232 markit = TRUE; 233 233 } 234 234 } 235 235 else { 236 if (wildcard(pszToMatch, Mask.pszMasks[x] + 1, FALSE)) {236 if (wildcard(pszToMatch, Mask.pszMasks[x] + 1, TRUE)) { 237 237 markit = FALSE; 238 238 break; … … 333 333 pszToMatch = file; 334 334 if (*Mask.pszMasks[x] != '/') { 335 if (wildcard(pszToMatch, Mask.pszMasks[x], FALSE))335 if (wildcard(pszToMatch, Mask.pszMasks[x], TRUE)) 336 336 unmarkit = TRUE; 337 337 } 338 338 else { 339 if (wildcard(pszToMatch, Mask.pszMasks[x] + 1, FALSE)) {339 if (wildcard(pszToMatch, Mask.pszMasks[x] + 1, TRUE)) { 340 340 unmarkit = FALSE; 341 341 break;
Note:
See TracChangeset
for help on using the changeset viewer.