summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:55:57 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:55:57 +0000
commit4cc8bab02ec36de9e901810c5b36e78cdedff003 (patch)
treef4d6755e203c908c283483e04113681f566a16a7 /cmdline
parenta31c1a6dded645c33e861c0a752cee2659527e4f (diff)
Made autoclean respect 'q' settings. Closes: #63023
Author: jgg Date: 2000-05-12 05:11:54 GMT Made autoclean respect 'q' settings. Closes: #63023
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/apt-get.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index 4558f7cf3..ea0feb239 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.96 2000/05/10 06:03:01 jgg Exp $
+// $Id: apt-get.cc,v 1.97 2000/05/12 05:11:54 jgg Exp $
/* ######################################################################
apt-get - Cover for dpkg
@@ -1291,7 +1291,7 @@ class LogCleaner : public pkgArchiveCleaner
protected:
virtual void Erase(const char *File,string Pkg,string Ver,struct stat &St)
{
- cout << "Del " << Pkg << " " << Ver << " [" << SizeToStr(St.st_size) << "B]" << endl;
+ c1out << "Del " << Pkg << " " << Ver << " [" << SizeToStr(St.st_size) << "B]" << endl;
if (_config->FindB("APT::Get::Simulate") == false)
unlink(File);