From: Jacob Bachmeyer Date: Sun, 13 Nov 2022 05:12:33 +0000 (-0600) Subject: Fix search/replace error X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=727277112e7659ef948f60517ff44580165e2c50;p=gatekeeper.git Fix search/replace error --- diff --git a/gatekeeper.pl b/gatekeeper.pl index d97143d..0a66d5d 100755 --- a/gatekeeper.pl +++ b/gatekeeper.pl @@ -2735,10 +2735,10 @@ foreach my $packet (@packets) { # each list element is an array reference $dsig_info = verify_clearsigned_message($directive_text, @keyrings); - throw signature_error => dsig_info => $dsig_info, + throw signature_error => sig_info => $dsig_info, summary => "gpg verify of directive file failed" if $dsig_info->{exitcode} != 0 || defined $dsig_info->{TILT}; - throw signature_error => dsig_info => $dsig_info, + throw signature_error => sig_info => $dsig_info, summary => "gpg verification problem: could not extract timestamp" unless defined $dsig_info->{sig_creation};