]> git.saurik.com Git - apt.git/commitdiff
Stuff
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:52:01 +0000 (16:52 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:52:01 +0000 (16:52 +0000)
Author: jgg
Date: 1998-12-06 06:22:58 GMT
Stuff

cmdline/apt-cache.cc
cmdline/apt-get.cc

index 2e1d43dedd19bb0aa4949ecf0600ca391042781b..51db343f970b726b42c7cb73ec013780dd146457 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: apt-cache.cc,v 1.14 1998/12/04 22:56:53 jgg Exp $
+// $Id: apt-cache.cc,v 1.15 1998/12/06 06:22:58 jgg Exp $
 /* ######################################################################
    
    apt-cache - Manages the cache files
@@ -32,7 +32,7 @@
 /* */
 bool UnMet(pkgCache &Cache)
 {
-   bool Important = _config->FindB("Important",false);
+   bool Important = _config->FindB("APT::Cache::Important",false);
    
    for (pkgCache::PkgIterator P = Cache.PkgBegin(); P.end() == false; P++)
    {
@@ -445,7 +445,7 @@ int main(int argc,const char *argv[])
       {'p',"pkg-cache","Dir::Cache::pkgcache",CommandLine::HasArg},
       {'s',"src-cache","Dir::Cache::srcpkgcache",CommandLine::HasArg},
       {'q',"quiet","quiet",CommandLine::IntLevel},
-      {'i',"important","Important",0},
+      {'i',"important","APT::Cache::Important",0},
       {'c',"config-file",0,CommandLine::ConfigFile},
       {'o',"option",0,CommandLine::ArbItem},
       {0,0,0,0}};
index 652825903f640e2b8eac9bd16f44e3d84985a45d..e8035abd0f607da359e9cdee4b9d96a9279bbf5e 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: apt-get.cc,v 1.25 1998/12/06 06:22:01 jgg Exp $
+// $Id: apt-get.cc,v 1.26 1998/12/06 06:22:59 jgg Exp $
 /* ######################################################################
    
    apt-get - Cover for dpkg
@@ -135,7 +135,7 @@ void ShowBroken(ostream &out,pkgDepCache &Cache)
         pkgCache::DepIterator Start;
         pkgCache::DepIterator End;
         D.GlobOr(Start,End);
-        
+
         if (Cache.IsImportantDep(End) == false || 
             (Cache[End] & pkgDepCache::DepGInstall) == pkgDepCache::DepGInstall)
            continue;