diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:21 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:21 +0000 |
commit | 140fd43fa632739af061834a6c1b7ee0f73a35b7 (patch) | |
tree | 3278fe4795ba416a8b1f0766df725ef8612a1502 /apt-pkg | |
parent | 9505213b4c7a4058ca353dd84db45abcfd47641a (diff) |
Oops in crictical handling
Author: jgg
Date: 1999-07-19 01:49:44 GMT
Oops in crictical handling
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/orderlist.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/orderlist.cc b/apt-pkg/orderlist.cc index 614c158c8..cb52d160e 100644 --- a/apt-pkg/orderlist.cc +++ b/apt-pkg/orderlist.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: orderlist.cc,v 1.6 1999/07/12 03:40:37 jgg Exp $ +// $Id: orderlist.cc,v 1.7 1999/07/19 01:49:44 jgg Exp $ /* ###################################################################### Order List - Represents and Manipulates an ordered list of packages. @@ -439,7 +439,7 @@ bool pkgOrderList::VisitProvides(DepIterator D,bool Critical) continue; // Skip over missing files - if (IsMissing(D.ParentPkg()) == true) + if (Critical == false && IsMissing(D.ParentPkg()) == true) continue; if (VisitNode(Pkg) == false) |