diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:30 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:30 +0000 |
commit | 6a3da7a60bbd7ec72596a68c6e8e79c19cb04729 (patch) | |
tree | 0d09ccb7c9abdbd4d8476271632772789700fd25 /apt-pkg/pkgcache.cc | |
parent | c37b9502fd00e03d7722314f94beb4f1441f621f (diff) |
Increase the range of the ID type for deps
Author: jgg
Date: 2001-07-01 22:28:24 GMT
Increase the range of the ID type for deps
Diffstat (limited to 'apt-pkg/pkgcache.cc')
-rw-r--r-- | apt-pkg/pkgcache.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/pkgcache.cc b/apt-pkg/pkgcache.cc index d0a86ec69..484cde5f4 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.35 2001/05/14 05:54:10 jgg Exp $ +// $Id: pkgcache.cc,v 1.36 2001/07/01 22:28:24 jgg Exp $ /* ###################################################################### Package Cache - Accessor code for the cache @@ -52,8 +52,8 @@ pkgCache::Header::Header() /* Whenever the structures change the major version should be bumped, whenever the generator changes the minor version should be bumped. */ - MajorVersion = 3; - MinorVersion = 5; + MajorVersion = 4; + MinorVersion = 0; Dirty = false; HeaderSz = sizeof(pkgCache::Header); |