Преглед изворни кода

* apt-pkg/acquire-item.cc:
- fix a merge modification (done by me) that prevents the
fallback to the uncompressed 'Packages' to work correctly

Michael Vogt пре 17 година
родитељ
комит
ab48734ffc
2 измењених фајлова са 12 додато и 4 уклоњено
  1. 4 3
      apt-pkg/acquire-item.cc
  2. 8 1
      debian/changelog

+ 4 - 3
apt-pkg/acquire-item.cc

@@ -711,13 +711,14 @@ void pkgAcqIndex::Done(string Message,unsigned long Size,string Hash,
    else
    else
       Local = true;
       Local = true;
    
    
-   string compExt = flExtension(URI(Desc.URI).Path);
+   string compExt = flExtension(flNotDir(URI(Desc.URI).Path));
    const char *decompProg;
    const char *decompProg;
    if(compExt == "bz2") 
    if(compExt == "bz2") 
       decompProg = "bzip2";
       decompProg = "bzip2";
-   else if(compExt == ".gz") 
+   else if(compExt == "gz") 
       decompProg = "gzip";
       decompProg = "gzip";
-   else if(compExt == "")
+   // flExtensions returns the full name if no extension is found
+   else if(compExt == flNotDir(URI(Desc.URI).Path))
       decompProg = "copy";
       decompProg = "copy";
    else {
    else {
       _error->Error("Unsupported extension: %s", compExt.c_str());
       _error->Error("Unsupported extension: %s", compExt.c_str());

+ 8 - 1
debian/changelog

@@ -1,3 +1,11 @@
+apt (0.7.17~exp3) experimental; urgency=low
+
+  * apt-pkg/acquire-item.cc:
+    - fix a merge modification (done by me) that prevents the
+      fallback to the uncompressed 'Packages' to work correctly
+
+ -- Michael Vogt <mvo@debian.org>  Wed, 29 Oct 2008 09:36:24 +0100
+
 apt (0.7.17~exp2) experimental; urgency=low
 apt (0.7.17~exp2) experimental; urgency=low
 
 
   [ Eugene V. Lyubimkin ]
   [ Eugene V. Lyubimkin ]
@@ -11,7 +19,6 @@ apt (0.7.17~exp2) experimental; urgency=low
   [ Michael Vogt ]
   [ Michael Vogt ]
   * fix various -Wall warnings
   * fix various -Wall warnings
 
 
-
  -- Michael Vogt <mvo@debian.org>  Tue, 28 Oct 2008 18:06:38 +0100
  -- Michael Vogt <mvo@debian.org>  Tue, 28 Oct 2008 18:06:38 +0100
 
 
 apt (0.7.17~exp1) experimental; urgency=low
 apt (0.7.17~exp1) experimental; urgency=low