Reindent ftp_abort
authorJacob Bachmeyer <jcb@gnu.org>
Thu, 17 Nov 2022 03:38:48 +0000 (21:38 -0600)
committerJacob Bachmeyer <jcb@gnu.org>
Thu, 17 Nov 2022 03:38:48 +0000 (21:38 -0600)
gatekeeper.pl

index 9f8f77093802854dfafa25d81b85f782398d4b9e..139fbd9e02b69b778e2eb4a36dea2fed3f758e93 100755 (executable)
@@ -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