diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-22 11:12:14 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-22 11:12:14 +0200 |
commit | fd8b88d6ece1382cf3441efe721ec84d43a19bbe (patch) | |
tree | 5987e00b722542c978e29b1e30407135972e0a82 /cmdline | |
parent | cf4904e1e0019fc09b9c53b587f5f4361ed26ec7 (diff) |
* cmdline/apt-get.cc:
- fix missing download progress in apt-get download
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 845c92026..3f818ffc3 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -2273,7 +2273,7 @@ bool DoDownload(CommandLine &CmdL) pkgAcquire Fetcher; AcqTextStatus Stat(ScreenWidth, _config->FindI("quiet",0)); - if (_config->FindB("APT::Get::Print-URIs") == true) + if (_config->FindB("APT::Get::Print-URIs") == false) Fetcher.Setup(&Stat); pkgRecords Recs(Cache); |