diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-05 14:02:59 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-05 14:02:59 +0100 |
commit | cec8c646c79e40d928464b08a6f2e3ea62bb1611 (patch) | |
tree | f6177e2daf52eb46cb3dd3be318b4c9d95125fcd /apt-pkg/contrib/sha1.cc | |
parent | f5b622ed48fdbe235d81b61b3edd8dbb84d9cc9c (diff) | |
parent | 64767f14595065d1c0f37c1b4a6047032b5c5ed7 (diff) |
merge lp:~mvo/apt/sha512-template to get fixes for the
sha1/md5 verifiation (closes: #632520)
Diffstat (limited to 'apt-pkg/contrib/sha1.cc')
-rw-r--r-- | apt-pkg/contrib/sha1.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/sha1.cc b/apt-pkg/contrib/sha1.cc index 0b1c16dc3..9a6725ef3 100644 --- a/apt-pkg/contrib/sha1.cc +++ b/apt-pkg/contrib/sha1.cc @@ -229,7 +229,7 @@ SHA1SumValue SHA1Summation::Result() // Transfer over the result SHA1SumValue Value; - char res[20]; + unsigned char res[20]; for (unsigned i = 0; i < 20; i++) { res[i] = (unsigned char) |