~ubuntu-branches/ubuntu/utopic/apt/utopic-proposed

« back to all changes in this revision

Viewing changes to apt-pkg/acquire-item.cc

  • Committer: Package Import Robot
  • Author(s): Michael Vogt
  • Date: 2014-09-16 21:12:37 UTC
  • Revision ID: package-import@ubuntu.com-20140916211237-3zojidzzjuyh2328
Tags: 1.0.8ubuntu3
fix autopkgtest

Show diffs side-by-side

added added

removed removed

Lines of Context:
1080
1080
      /* Always verify the index file for correctness (all indexes must
1081
1081
       * have a Package field) (LP: #346386) (Closes: #627642) 
1082
1082
       */
1083
 
      FileFd fd(DestFile, FileFd::ReadOnly);
 
1083
      FileFd fd(DestFile, FileFd::ReadOnlyGzip);
1084
1084
      // Only test for correctness if the file is not empty (empty is ok)
1085
 
      if (fd.FileSize() > 0)
 
1085
      if (fd.Size() > 0)
1086
1086
      {
1087
1087
         pkgTagSection sec;
1088
1088
         pkgTagFile tag(&fd);
1209
1209
   string Final = _config->FindDir("Dir::State::lists");
1210
1210
   Final += URItoFileName(RealURI);
1211
1211
 
1212
 
   std::string const compExt = CompressionExtension.substr(0, CompressionExtension.find(' '));
1213
 
   if (_config->FindB("Acquire::GzipIndexes",false) && compExt == "gz")
1214
 
      DestFile += ".gz";
 
1212
   if (_config->FindB("Acquire::GzipIndexes",false))
 
1213
      Final += ".gz";
1215
1214
 
1216
1215
   struct stat Buf;
1217
1216
   if (stat(Final.c_str(),&Buf) != 0)