diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:59:40 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:59:40 +0000 |
commit | ff2a211aec45ac8c63ad60d75714da78d77ef69b (patch) | |
tree | 76794f1bbdaa5d55d3e373e5a283582d96b77873 /cmdline | |
parent | 0b3e884979228557c0032ae01febe05c490a83ff (diff) |
_config->Dump is now inlined, and calls Dump(clog). Du...
Author: doogie
Date: 2002-11-09 17:11:25 GMT
_config->Dump is now inlined, and calls Dump(clog). Dump(ostream&) is now
exported. Fixed apt-config dump sending to stderr.
Diffstat (limited to 'cmdline')
-rw-r--r-- | cmdline/apt-config.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmdline/apt-config.cc b/cmdline/apt-config.cc index d9b1ff00e..9a937a10f 100644 --- a/cmdline/apt-config.cc +++ b/cmdline/apt-config.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt-config.cc,v 1.9 2002/02/15 03:40:00 jgg Exp $ +// $Id: apt-config.cc,v 1.10 2002/11/09 17:11:25 doogie Exp $ /* ###################################################################### APT Config - Program to manipulate APT configuration files @@ -57,7 +57,7 @@ bool DoShell(CommandLine &CmdL) /* */ bool DoDump(CommandLine &CmdL) { - _config->Dump(); + _config->Dump(cout); return true; } /*}}}*/ |