]> git.saurik.com Git - apt.git/commitdiff
disable fnmatch()
authorMichael Vogt <mvo@debian.org>
Fri, 14 Feb 2014 18:58:56 +0000 (19:58 +0100)
committerMichael Vogt <mvo@debian.org>
Fri, 14 Feb 2014 19:02:26 +0000 (20:02 +0100)
The current PackageContainerInterface::FromString() will do a
FromFnmatch() first and then FromRegEx(). This commit reverts
that change to restore the old behavior to only look for RegEx
and not glob-style pattern. The rational is that:
a) currently a fnmatch() is misleadingly reported as a regex match to
   the user (Bug#738880)
b) a fnmatch may match something different than a a RegEx so the
   change broke a published interface

apt-pkg/cacheset.cc

index 1b1e6d5958becc26ba7ccb591c392a5ff8765c21..eab1e09f86d23284a3b19fce1feecb0156e75798 100644 (file)
@@ -312,7 +312,6 @@ bool PackageContainerInterface::FromString(PackageContainerInterface * const pci
 
        if (FromGroup(pci, Cache, str, helper) == false &&
                 FromTask(pci, Cache, str, helper) == false &&
-                FromFnmatch(pci, Cache, str, helper) == false &&
                 FromRegEx(pci, Cache, str, helper) == false)
        {
                helper.canNotFindPackage(pci, Cache, str);