From: Kern Sibbald Date: Mon, 3 Sep 2007 11:45:58 +0000 (+0000) Subject: Tweak fnmatch.c X-Git-Tag: Release-7.0.0~5752 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=37beb9ee65950a0287e44c7f4f11da3859eba362;p=bacula%2Fbacula Tweak fnmatch.c git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5443 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/lib/fnmatch.c b/bacula/src/lib/fnmatch.c index 70aaf14ca9..a352fa2234 100644 --- a/bacula/src/lib/fnmatch.c +++ b/bacula/src/lib/fnmatch.c @@ -248,7 +248,7 @@ static struct test tests[] = { /*10*/ {"x*", "x", FNM_PATHNAME | FNM_LEADING_DIR, 0}, {"x*", "x/y", FNM_PATHNAME | FNM_LEADING_DIR, 0}, {"x*", "x/y/z", FNM_PATHNAME | FNM_LEADING_DIR, 0}, - {"a*b/*", "abbb/.x", FNM_PATHNAME|FNM_PERIOD, FNM_NOMATCH}, + {"a*b/*", "abbb/.x", FNM_PATHNAME|FNM_PERIOD, FNM_NOMATCH}, /* ??? */ {"a*b/*", "abbb/xy", FNM_PATHNAME|FNM_PERIOD, 0}, /*15*/ {"[A-[]", "A", 0, 0}, {"[A-[]", "a", 0, FNM_NOMATCH},