diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:22 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:22 +0000 |
commit | fbfb2a7cad49c38a8a830ceadbc20ab89f683718 (patch) | |
tree | 31ef8c12d6b58e2c2679dccb49b36fb7cd0ac179 /apt-pkg/pkgcache.cc | |
parent | 53da8d703e228f7107688aa38fe305a0ba8d91e4 (diff) |
Enum fix
Author: jgg
Date: 1998-11-08 23:29:18 GMT
Enum fix
Diffstat (limited to 'apt-pkg/pkgcache.cc')
-rw-r--r-- | apt-pkg/pkgcache.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/apt-pkg/pkgcache.cc b/apt-pkg/pkgcache.cc index 99cd11413..aef6541e5 100644 --- a/apt-pkg/pkgcache.cc +++ b/apt-pkg/pkgcache.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: pkgcache.cc,v 1.13 1998/11/06 02:52:22 jgg Exp $ +// $Id: pkgcache.cc,v 1.14 1998/11/08 23:29:19 jgg Exp $ /* ###################################################################### Package Cache - Accessor code for the cache @@ -44,7 +44,7 @@ pkgCache::Header::Header() /* Whenever the structures change the major version should be bumped, whenever the generator changes the minor version should be bumped. */ MajorVersion = 2; - MinorVersion = 0; + MinorVersion = 1; Dirty = true; HeaderSz = sizeof(pkgCache::Header); @@ -287,7 +287,8 @@ bool pkgCache::DepIterator::SmartTargetPkg(PkgIterator &Result) // --------------------------------------------------------------------- /* This is a more usefull version of TargetPkg() that follows versioned provides. It includes every possible package-version that could satisfy - the dependency. The last item in the list has a 0. */ + the dependency. The last item in the list has a 0. The resulting pointer + must be delete [] 'd */ pkgCache::Version **pkgCache::DepIterator::AllTargets() { Version **Res = 0; |