diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:48 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:48 +0000 |
commit | 204fbdcce67a08d33a5e7eb3ca9e7a9ae80918c5 (patch) | |
tree | fef1ee61740101afa96ab907003385c9f6db0f08 /apt-pkg/pkgcache.cc | |
parent | 8b75eb1cadd4db3d6ecb27fa4f441843d3856f77 (diff) |
Multiple different versions support
Author: jgg
Date: 1999-05-23 22:55:54 GMT
Multiple different versions support
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 6af04268a..4ff5a27ea 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.24 1999/04/12 04:21:20 jgg Exp $ +// $Id: pkgcache.cc,v 1.25 1999/05/23 22:55:54 jgg Exp $ /* ###################################################################### Package Cache - Accessor code for the cache @@ -43,8 +43,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 = 2; - MinorVersion = 3; + MajorVersion = 3; + MinorVersion = 1; Dirty = true; HeaderSz = sizeof(pkgCache::Header); |