]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/debindexfile.cc
* debian/rules
[apt.git] / apt-pkg / deb / debindexfile.cc
index e2ed868902d6bd6fbba6c0b71acc556ecade5f47..ed76338032fb46659825b2e0da838cc2dfd90b29 100644 (file)
@@ -9,10 +9,6 @@
    ##################################################################### */
                                                                        /*}}}*/
 // Include Files                                                       /*{{{*/
-#ifdef __GNUG__
-#pragma implementation "apt-pkg/debindexfile.h"
-#endif
-
 #include <apt-pkg/debindexfile.h>
 #include <apt-pkg/debsrcrecords.h>
 #include <apt-pkg/deblistparser.h>
@@ -305,7 +301,7 @@ pkgCache::PkgFileIterator debPackagesIndex::FindInCache(pkgCache &Cache) const
    pkgCache::PkgFileIterator File = Cache.FileBegin();
    for (; File.end() == false; File++)
    {
-      if (FileName != File.FileName())
+       if (File.FileName() == NULL || FileName != File.FileName())
         continue;
       
       struct stat St;
@@ -338,23 +334,15 @@ inline string debTranslationsIndex::IndexFile(const char *Type) const
 string debTranslationsIndex::IndexURI(const char *Type) const
 {
    string Res;
-
-   string theURI = URI;
-   // FIXME: EVIL! Remove as soon as pdiff support is offical
-   string remap = _config->Find("DDTP::URL-Remap::"+URI,"");
-   if(!remap.empty())
-      theURI = remap;
-
-
    if (Dist[Dist.size() - 1] == '/')
    {
       if (Dist != "/")
-        Res = theURI + Dist;
+        Res = URI + Dist;
       else 
-        Res = theURI;
+        Res = URI;
    }
    else
-      Res = theURI + "dists/" + Dist + '/' + Section +
+      Res = URI + "dists/" + Dist + '/' + Section +
       "/i18n/Translation-";
    
    Res += Type;