From: Brian Aker Date: Mon, 3 Dec 2007 03:36:33 +0000 (-0800) Subject: Fix to removed GNU specific bit X-Git-Tag: 0.13~52 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=dd4e220cbf4e570aefd842d72f22ba83c2dce2d4;p=awesomized%2Flibmemcached Fix to removed GNU specific bit --- diff --git a/tests/test.c b/tests/test.c index 990f15e7..f8cde94d 100644 --- a/tests/test.c +++ b/tests/test.c @@ -120,7 +120,7 @@ int main(int argc, char *argv[]) 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); @@ -132,7 +132,7 @@ int main(int argc, char *argv[]) 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);