X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmatch_glob.c;h=cf71f5648f9caf88740ac62220438c7bd5b5e5a7;hb=00537b483d646bd04a204708ecbde708861f044e;hp=2fa028a0fbd6e5689826e9a077e04541aa012e97;hpb=77c5a4fca8b516fd39b8ba213daed17a465a6b2a;p=yaz-moved-to-github.git diff --git a/src/match_glob.c b/src/match_glob.c index 2fa028a..cf71f56 100644 --- a/src/match_glob.c +++ b/src/match_glob.c @@ -24,7 +24,7 @@ int yaz_match_glob(const char *glob, const char *text) return *text == '\0'; if (glob[0] == '*') { - do + do { if (yaz_match_glob(glob+1, text)) return 1;