From dd4e220cbf4e570aefd842d72f22ba83c2dce2d4 Mon Sep 17 00:00:00 2001 From: Brian Aker Date: Sun, 2 Dec 2007 19:36:33 -0800 Subject: [PATCH] Fix to removed GNU specific bit --- tests/test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.30.2