]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/sourcelist.cc
support long keyid and fingerprint in gpgv's GOODSIG
[apt.git] / apt-pkg / sourcelist.cc
index cfd824978665686b7ad7c896e03db683bf4ee484..0da6878959f9cd6248761822dbc0b945764ab78d 100644 (file)
@@ -568,7 +568,8 @@ bool pkgSourceList::AddVolatileFile(std::string const &File, std::vector<std::st
       return false;
 
    std::string const ext = flExtension(File);
-   if (ext == "deb")
+   // udeb is not included as installing it is usually a mistake rather than intended
+   if (ext == "deb" || ext == "ddeb")
       AddVolatileFile(new debDebPkgFileIndex(File));
    else if (ext == "dsc")
       AddVolatileFile(new debDscFileIndex(File));