diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:56 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:56 +0000 |
commit | f78439bfef02317c4d9d8138af7bdfb3b73fcec2 (patch) | |
tree | 92cde98debc5f53c9190a3c0e8e83c97f12164a0 /apt-pkg/pkgcache.cc | |
parent | b5dc97853ed1884269aa92a98f9f1e37d5591a14 (diff) |
Changed CRC algorithm
Author: jgg
Date: 1999-06-04 05:54:20 GMT
Changed CRC algorithm
Diffstat (limited to 'apt-pkg/pkgcache.cc')
-rw-r--r-- | apt-pkg/pkgcache.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/pkgcache.cc b/apt-pkg/pkgcache.cc index 4ff5a27ea..040c672c8 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.25 1999/05/23 22:55:54 jgg Exp $ +// $Id: pkgcache.cc,v 1.26 1999/06/04 05:54:20 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 = 3; - MinorVersion = 1; + MinorVersion = 2; Dirty = true; HeaderSz = sizeof(pkgCache::Header); |