diff options
author | Michael Vogt <mvo@debian.org> | 2014-09-21 10:18:03 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-09-21 10:18:03 +0200 |
commit | b0f4b486e6850c5f98520ccf19da71d0ed748ae4 (patch) | |
tree | b762d4679dd4705da68d107290bc01622d7de038 /cmdline | |
parent | 2bd6be8ad24583ed9935f5c5d57c04ba7344111e (diff) |
generalize Acquire::GzipIndex
Diffstat (limited to 'cmdline')
-rw-r--r-- | cmdline/apt-get.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 845d67d2b..2e283da5a 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -665,7 +665,7 @@ static bool DoDownload(CommandLine &CmdL) { pkgAcquire::UriIterator I = Fetcher.UriBegin(); for (; I != Fetcher.UriEnd(); ++I) - cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' << + cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' << I->Owner->FileSize << ' ' << I->Owner->HashSum() << endl; return true; } |