diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-12-19 11:44:52 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-12-19 11:44:52 +0100 |
commit | 59b46c414d5a5cebd26bdafac6b08fa4d1ba0963 (patch) | |
tree | be83cc6906fc7a819142c833086b7c026838f3e8 /apt-pkg/deb/debrecords.cc | |
parent | 4172c78468a04078c97146dbc2e2979e63906f5b (diff) |
* apt-pkg/deb/debrecords.cc:
- return the correct SHA1Hash()
* methods/http.cc:
- send VERSION of apt in the User-Agent string
Diffstat (limited to 'apt-pkg/deb/debrecords.cc')
-rw-r--r-- | apt-pkg/deb/debrecords.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/deb/debrecords.cc b/apt-pkg/deb/debrecords.cc index 6652a6ad9..c3e579ad1 100644 --- a/apt-pkg/deb/debrecords.cc +++ b/apt-pkg/deb/debrecords.cc @@ -61,7 +61,7 @@ string debRecordParser::MD5Hash() /* */ string debRecordParser::SHA1Hash() { - return Section.FindS("SHA1Sum"); + return Section.FindS("SHA1"); } /*}}}*/ // RecordParser::Maintainer - Return the maintainer email /*{{{*/ |