test_st *run;
run= next->tests;
- if (collection_to_run && fnmatch(collection_to_run, next->name, FNM_CASEFOLD))
+ if (collection_to_run && fnmatch(collection_to_run, next->name, 0))
continue;
fprintf(stderr, "\n%s\n\n", next->name);
memcached_return rc;
struct timeval start_time, end_time;
- if (wildcard && fnmatch(wildcard, run->name, FNM_CASEFOLD))
+ if (wildcard && fnmatch(wildcard, run->name, 0))
continue;
fprintf(stderr, "Testing %s", run->name);