From: Jacob Bachmeyer Date: Thu, 27 Oct 2022 00:28:18 +0000 (-0500) Subject: Recognize that an inability to execute gpgv is a server error X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=8dbaf81ed58bb2c6189dd256887fc5867815e21f;p=gatekeeper.git Recognize that an inability to execute gpgv is a server error This is an event that should never happen, therefore it now uses ftp_abort. --- diff --git a/gatekeeper.pl b/gatekeeper.pl index db18065..42f142d 100755 --- a/gatekeeper.pl +++ b/gatekeeper.pl @@ -721,9 +721,8 @@ sub verify_clearsigned_message { chomp $err; if ($err =~ m/^ERR: (.*)$/) { # This is bad - we couldn't even execute the gpgv command properly - guess_uploader_email($text); - fatal("gpg verify of directive file failed (error executing gpgv): $1", - 0,'',2); + ftp_abort + ("gpg verify of directive file failed (error executing gpgv): $1"); } } close $gpgv_flag; # child has closed its end one way or another