]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/acquire-item.cc
* merged with the current debian version
[apt.git] / apt-pkg / acquire-item.cc
index 88c25de437e52f0cbe9a0171eca4809c895e54b5..09f25c0ddc45d83b1ca59e82b3b3e5e092e1896e 100644 (file)
@@ -142,21 +142,20 @@ pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner,
 {
    Decompression = false;
    Erase = false;
 {
    Decompression = false;
    Erase = false;
-
+   
    DestFile = _config->FindDir("Dir::State::lists") + "partial/";
    DestFile += URItoFileName(URI);
 
    if(comprExt.empty()) 
    {
    DestFile = _config->FindDir("Dir::State::lists") + "partial/";
    DestFile += URItoFileName(URI);
 
    if(comprExt.empty()) 
    {
-      // autoselect the compression method
-      if(FileExists("/usr/bin/bzip2")) 
-        CompressionExtension = ".bz2";
-      else 
-        CompressionExtension = ".gz";
+      // autoselect 
+      if(FileExists("/usr/bin/bzip2"))
+        Desc.URI = URI + ".bz2"; 
+      else
+        Desc.URI = URI + ".gz"; 
    } else {
    } else {
-      CompressionExtension = comprExt;
+      Desc.URI = URI + comprExt; 
    }
    }
-   Desc.URI = URI + CompressionExtension; 
 
    Desc.Description = URIDesc;
    Desc.Owner = this;
 
    Desc.Description = URIDesc;
    Desc.Owner = this;