]> git.saurik.com Git - apt.git/commitdiff
Fixed for new egcs
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:51:03 +0000 (16:51 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:51:03 +0000 (16:51 +0000)
Author: jgg
Date: 1998-10-08 05:02:06 GMT
Fixed for new egcs

apt-pkg/pkgcache.cc

index 2e62f2ea4d0a1a29195355b967354b2f57b9b240..111acee7cf33f2afcf7f57e6b601cc1f1c74de46 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: pkgcache.cc,v 1.9 1998/10/02 04:39:46 jgg Exp $
+// $Id: pkgcache.cc,v 1.10 1998/10/08 05:02:06 jgg Exp $
 /* ######################################################################
    
    Package Cache - Accessor code for the cache
@@ -204,13 +204,13 @@ void pkgCache::PkgIterator::operator ++(int)
 /* By this we mean if it is either cleanly installed or cleanly removed. */
 pkgCache::PkgIterator::OkState pkgCache::PkgIterator::State() const
 {
-   if (Pkg->CurrentState == State::UnPacked ||
-       Pkg->CurrentState == State::HalfConfigured)
+   if (Pkg->CurrentState == pkgCache::State::UnPacked ||
+       Pkg->CurrentState == pkgCache::State::HalfConfigured)
       return NeedsConfigure;
    
-   if (Pkg->CurrentState == State::UnInstalled ||
-       Pkg->CurrentState == State::HalfInstalled ||
-       Pkg->InstState != State::Ok)
+   if (Pkg->CurrentState == pkgCache::State::UnInstalled ||
+       Pkg->CurrentState == pkgCache::State::HalfInstalled ||
+       Pkg->InstState != pkgCache::State::Ok)
       return NeedsUnpack;
       
    return NeedsNothing;