summaryrefslogtreecommitdiffstats
path: root/tool/src
diff options
context:
space:
mode:
Diffstat (limited to 'tool/src')
-rw-r--r--tool/src/commands/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/src/commands/mod.rs b/tool/src/commands/mod.rs
index feb3e41e..aa60b5d2 100644
--- a/tool/src/commands/mod.rs
+++ b/tool/src/commands/mod.rs
@@ -243,7 +243,7 @@ impl<'a> VerificationHelper for VHelper<'a> {
fn check(&mut self, sigs: Vec<Vec<VerificationResult>>) -> Result<()> {
use self::VerificationResult::*;
- for (i, results) in sigs.into_iter().enumerate() {
+ for (i, results) in sigs.into_iter().rev().enumerate() {
for result in results {
let issuer = match result {
GoodChecksum(ref sig, ..) => sig.get_issuer(),