diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:24 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:24 +0000 |
commit | a005475ea62b65e08f67bf462ace6eb44289df07 (patch) | |
tree | 94948e5728ab68a2d70d381d4bb5093c7ddf7d49 /apt-pkg/pkgcache.h | |
parent | ddc1d8d08eaff6c71c6062654ddd9d8981799ae9 (diff) |
Fixed the infinite loop problem
Author: jgg
Date: 1999-07-30 02:54:25 GMT
Fixed the infinite loop problem
Diffstat (limited to 'apt-pkg/pkgcache.h')
-rw-r--r-- | apt-pkg/pkgcache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/pkgcache.h b/apt-pkg/pkgcache.h index a1e17a878..4d2401570 100644 --- a/apt-pkg/pkgcache.h +++ b/apt-pkg/pkgcache.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: pkgcache.h,v 1.21 1999/07/15 03:15:48 jgg Exp $ +// $Id: pkgcache.h,v 1.22 1999/07/30 02:54:25 jgg Exp $ /* ###################################################################### Cache - Structure definitions for the cache file @@ -70,7 +70,7 @@ class pkgCache enum PkgSelectedState {Unknown=0,Install=1,Hold=2,DeInstall=3,Purge=4}; enum PkgInstState {Ok=0,ReInstReq=1,HoldInst=2,HoldReInstReq=3}; enum PkgCurrentState {NotInstalled=0,UnPacked=1,HalfConfigured=2, - UnInstalled=3,HalfInstalled=4,ConfigFiles=5,Installed=6}; + HalfInstalled=4,ConfigFiles=5,Installed=6}; }; struct Flag |