diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-07-26 19:18:11 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-07-26 19:18:11 +0200 |
commit | 495e5cb25443e6606c0d02891e1f6610983e88cd (patch) | |
tree | 3d447cad9505e2703bd93dd98ebc2199971fc4cd /apt-pkg/tagfile.h | |
parent | dfd1a56e88c068f0085140630306901d01ed0f98 (diff) |
* implement sha256/sha1/md5 checking with proper backward compatibility
and fallback
Diffstat (limited to 'apt-pkg/tagfile.h')
-rw-r--r-- | apt-pkg/tagfile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h index 05c6aa701..6536932dd 100644 --- a/apt-pkg/tagfile.h +++ b/apt-pkg/tagfile.h @@ -30,8 +30,8 @@ class pkgTagSection const char *Stop; // We have a limit of 256 tags per section. - unsigned short Indexes[256]; - unsigned short AlphaIndexes[0x100]; + unsigned int Indexes[256]; + unsigned int AlphaIndexes[0x100]; unsigned int TagCount; |