diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2013-03-01 19:04:15 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2013-03-01 19:04:15 +0100 |
commit | 472a91553b98873d36b05cc9af1471510b22879c (patch) | |
tree | 140f6a4f86425475271c5a50343c4cd99f7c52b5 /cmdline | |
parent | 32fa71a57dcf625c94207dce612175af49c93ce4 (diff) | |
parent | 75247742b762d5e8dc311600b8b053533695f36d (diff) |
merged lp:~mvo/apt/hash-order
Diffstat (limited to 'cmdline')
-rw-r--r-- | cmdline/apt-get.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 1bb981b20..e3c74a099 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -2395,7 +2395,7 @@ bool DoDownload(CommandLine &CmdL) HashString hash; if (rec.SHA512Hash() != "") hash = HashString("sha512", rec.SHA512Hash()); - if (rec.SHA256Hash() != "") + else if (rec.SHA256Hash() != "") hash = HashString("sha256", rec.SHA256Hash()); else if (rec.SHA1Hash() != "") hash = HashString("sha1", rec.SHA1Hash()); |