Explorar el Código

-qq fixes
Author: jgg
Date: 1998-12-05 04:50:27 GMT
-qq fixes

Arch Librarian hace 22 años
padre
commit
738309d66b
Se han modificado 1 ficheros con 7 adiciones y 7 borrados
  1. 7 7
      cmdline/apt-get.cc

+ 7 - 7
cmdline/apt-get.cc

@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // -*- mode: cpp; mode: fold -*-
 // Description								/*{{{*/
 // Description								/*{{{*/
-// $Id: apt-get.cc,v 1.23 1998/12/05 04:36:10 jgg Exp $
+// $Id: apt-get.cc,v 1.24 1998/12/05 04:50:27 jgg Exp $
 /* ######################################################################
 /* ######################################################################
    
    
    apt-get - Cover for dpkg
    apt-get - Cover for dpkg
@@ -61,7 +61,7 @@ bool YnPrompt()
 {
 {
    if (_config->FindB("APT::Get::Assume-Yes",false) == true)
    if (_config->FindB("APT::Get::Assume-Yes",false) == true)
    {
    {
-      c2out << 'Y' << endl;
+      c1out << 'Y' << endl;
       return true;
       return true;
    }
    }
    
    
@@ -529,19 +529,19 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true)
    }
    }
       
       
    // Number of bytes
    // Number of bytes
-   c1out << "Need to get ";
+   c2out << "Need to get ";
    if (DebBytes != FetchBytes)
    if (DebBytes != FetchBytes)
-      c1out << SizeToStr(FetchBytes) << '/' << SizeToStr(DebBytes);
+      c2out << SizeToStr(FetchBytes) << '/' << SizeToStr(DebBytes);
    else
    else
-      c1out << SizeToStr(DebBytes);
+      c2out << SizeToStr(DebBytes);
       
       
    c1out << " of archives. After unpacking ";
    c1out << " of archives. After unpacking ";
    
    
    // Size delta
    // Size delta
    if (Cache->UsrSize() >= 0)
    if (Cache->UsrSize() >= 0)
-      c1out << SizeToStr(Cache->UsrSize()) << " will be used." << endl;
+      c2out << SizeToStr(Cache->UsrSize()) << " will be used." << endl;
    else
    else
-      c1out << SizeToStr(-1*Cache->UsrSize()) << " will be freed." << endl;
+      c2out << SizeToStr(-1*Cache->UsrSize()) << " will be freed." << endl;
 
 
    if (_error->PendingError() == true)
    if (_error->PendingError() == true)
       return false;
       return false;