diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2009-02-03 14:06:49 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2009-02-03 14:06:49 +0100 |
commit | d24ddc3008473562ca6dc8d9e6a2f2b790fbe5ce (patch) | |
tree | 9b80bc6c50e9b43b3892c9d26c20fc26d0690026 /apt-pkg | |
parent | 71a9e7cf8b7c78950939bb866701d8445fe5ba4c (diff) |
apt-pkg/pkgcache.cc: fix typo
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/pkgcache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/pkgcache.cc b/apt-pkg/pkgcache.cc index 385d247ea..4fbf42c4b 100644 --- a/apt-pkg/pkgcache.cc +++ b/apt-pkg/pkgcache.cc @@ -274,7 +274,7 @@ pkgCache::PkgIterator::OkState pkgCache::PkgIterator::State() const return NeedsUnpack; if (Pkg->CurrentState == pkgCache::State::UnPacked || - Pkg->CurrentState == pkgCache::State::HalfConfigured) || + Pkg->CurrentState == pkgCache::State::HalfConfigured || //we don't need to care for triggers awaiting packages //dpkg will deal with them automatically when the //trigger pending action is run (those packages are usually |