diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:53 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:53 +0000 |
commit | fc9d4b7b18e1c3c9fbcdf6766d21180c0db88b24 (patch) | |
tree | d040fd8d586da16f8992786a21e7be946085eb16 /cmdline/apt-get.cc | |
parent | a66a514f8302f88d08e292f1c7a94689d45cb801 (diff) |
Offline users guide
Author: jgg
Date: 1999-02-15 08:23:10 GMT
Offline users guide
Diffstat (limited to 'cmdline/apt-get.cc')
-rw-r--r-- | cmdline/apt-get.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 0c466a6f9..451519c7c 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt-get.cc,v 1.41 1999/02/15 05:24:35 jgg Exp $ +// $Id: apt-get.cc,v 1.42 1999/02/15 08:23:10 jgg Exp $ /* ###################################################################### apt-get - Cover for dpkg @@ -536,19 +536,19 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true) } // Number of bytes - c2out << "Need to get "; + c1out << "Need to get "; if (DebBytes != FetchBytes) - c2out << SizeToStr(FetchBytes) << "b/" << SizeToStr(DebBytes) << 'b'; + c1out << SizeToStr(FetchBytes) << "b/" << SizeToStr(DebBytes) << 'b'; else - c2out << SizeToStr(DebBytes) << 'b'; + c1out << SizeToStr(DebBytes) << 'b'; c1out << " of archives. After unpacking "; // Size delta if (Cache->UsrSize() >= 0) - c2out << SizeToStr(Cache->UsrSize()) << "b will be used." << endl; + c1out << SizeToStr(Cache->UsrSize()) << "b will be used." << endl; else - c2out << SizeToStr(-1*Cache->UsrSize()) << "b will be freed." << endl; + c1out << SizeToStr(-1*Cache->UsrSize()) << "b will be freed." << endl; if (_error->PendingError() == true) return false; |