]> git.saurik.com Git - apt.git/blobdiff - cmdline/apt-cache.cc
Document the general effect of the comma operator
[apt.git] / cmdline / apt-cache.cc
index 117a4429235c07aad383f6ec692086b0c2a806a8..a0322498652954073f2ba4cc410af21c879ecdaf 100644 (file)
@@ -310,10 +310,15 @@ static void ShowHashTableStats(std::string Type,
 // Stats - Dump some nice statistics                                   /*{{{*/
 // ---------------------------------------------------------------------
 /* */
-static bool Stats(CommandLine &)
+static bool Stats(CommandLine &CmdL)
 {
    pkgCacheFile CacheFile;
    pkgCache *Cache = CacheFile.GetPkgCache();
+
+   if (CmdL.FileSize() > 1) {
+      _error->Error(_("apt-cache stats does not take any arguments"));
+      return false;
+   }
    if (unlikely(Cache == NULL))
       return false;