]> git.saurik.com Git - apt.git/blobdiff - methods/file.cc
allow uncompressed files to be empty in store again
[apt.git] / methods / file.cc
index 4e3410078fd734ec3eca282e4f61692f3a801733..36f3c39b9b8c2a9fef1fc25893e994f43263d0e6 100644 (file)
@@ -98,7 +98,7 @@ bool FileMethod::Fetch(FetchItem *Itm)
    {
       if (APT::String::Endswith(File, *ext) == true)
       {
-        std::string const unfile = File.substr(0, File.length() - ext->length() - 1);
+        std::string const unfile = File.substr(0, File.length() - ext->length());
         if (stat(unfile.c_str(),&Buf) == 0)
         {
            AltRes.Size = Buf.st_size;