From 02f88d73261e744932a71d7cc4f0527b9abae960 Mon Sep 17 00:00:00 2001 From: Jacob Bachmeyer Date: Wed, 16 Nov 2022 21:38:48 -0600 Subject: [PATCH] Reindent ftp_abort --- gatekeeper.pl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/gatekeeper.pl b/gatekeeper.pl index 9f8f770..139fbd9 100755 --- a/gatekeeper.pl +++ b/gatekeeper.pl @@ -444,16 +444,16 @@ MESSAGE there; otherwise MESSAGE is sent to syslog with 'err' severity. =cut sub ftp_abort($) { - my $msg = shift; + my $msg = shift; - our $AbortExitCode; our $AbortPipe; + our $AbortExitCode; our $AbortPipe; - if (defined $AbortPipe && defined fileno $AbortPipe) - { print $AbortPipe $msg, "\n" } - else - { ftp_syslog('err', $msg) } + if (defined $AbortPipe && defined fileno $AbortPipe) + { print $AbortPipe $msg, "\n" } + else + { ftp_syslog('err', $msg) } - exit $AbortExitCode; + exit $AbortExitCode; } # Initialize our syslogging -- 2.25.1