Fix SVN r181821 by not using FNM_LEADING_DIR where

it shouldn't be used.
This commit is contained in:
Tim Kientzle 2008-08-18 18:13:40 +00:00
parent 5a288360c8
commit 651eea9aa8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=181845

View File

@ -313,7 +313,7 @@ pathmatch(const char *pattern, const char *string)
while (string[0] == '/')
++string;
}
return (bsdtar_fnmatch(pattern, string, FNM_LEADING_DIR));
return (bsdtar_fnmatch(pattern, string));
}