summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:52:08 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:52:08 +0000
commit3d615484858169e6732ef4f236fd3f38d0083a89 (patch)
treeaf17b8d0fd6f7b95e5298598d3ceb8dba3ac3f42 /cmdline
parentf1663bdf8391e09939e88f070171ed3fe3ab2cbd (diff)
More bugs fixes
Author: jgg Date: 1998-12-10 04:22:45 GMT More bugs fixes
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/apt-cache.cc8
-rw-r--r--cmdline/apt-get.cc8
2 files changed, 12 insertions, 4 deletions
diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc
index b20227153..429c36a3d 100644
--- a/cmdline/apt-cache.cc
+++ b/cmdline/apt-cache.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-cache.cc,v 1.16 1998/12/07 00:34:22 jgg Exp $
+// $Id: apt-cache.cc,v 1.17 1998/12/10 04:22:48 jgg Exp $
/* ######################################################################
apt-cache - Manages the cache files
@@ -500,6 +500,12 @@ int main(int argc,const char *argv[])
{
if (strcmp(CmdL.FileList[0],"add") == 0)
{
+ ShowHelp();
+ break;
+ }
+
+ if (strcmp(CmdL.FileList[0],"add") == 0)
+ {
DoAdd(CmdL);
break;
}
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index fbfaf7303..a17d0ce2f 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.28 1998/12/08 23:52:24 jgg Exp $
+// $Id: apt-get.cc,v 1.29 1998/12/10 04:22:51 jgg Exp $
/* ######################################################################
apt-get - Cover for dpkg
@@ -208,6 +208,7 @@ void ShowDel(ostream &out,pkgDepCache &Dep)
for (;I.end() != true; I++)
if (Dep[I].Delete() == true)
List += string(I.Name()) + " ";
+
ShowList(out,"The following packages will be REMOVED:",List);
}
/*}}}*/
@@ -958,7 +959,7 @@ bool DoCheck(CommandLine &CmdL)
// ShowHelp - Show a help screen /*{{{*/
// ---------------------------------------------------------------------
/* */
-int ShowHelp()
+int ShowHelp(CommandLine &CmdL)
{
cout << PACKAGE << ' ' << VERSION << " for " << ARCHITECTURE <<
" compiled on " << __DATE__ << " " << __TIME__ << endl;
@@ -1057,6 +1058,7 @@ int main(int argc,const char *argv[])
{"dselect-upgrade",&DoDSelectUpgrade},
{"clean",&DoClean},
{"check",&DoCheck},
+ {"help",&ShowHelp},
{0,0}};
// Parse the command line and initialize the package library
@@ -1071,7 +1073,7 @@ int main(int argc,const char *argv[])
// See if the help should be shown
if (_config->FindB("help") == true ||
CmdL.FileSize() == 0)
- return ShowHelp();
+ return ShowHelp(CmdL);
// Setup the output streams
c0out.rdbuf(cout.rdbuf());