From 727277112e7659ef948f60517ff44580165e2c50 Mon Sep 17 00:00:00 2001 From: Jacob Bachmeyer Date: Sat, 12 Nov 2022 23:12:33 -0600 Subject: [PATCH] Fix search/replace error --- gatekeeper.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}; -- 2.25.1