Rename local variable in ftp_syslog
authorJacob Bachmeyer <jcb@gnu.org>
Thu, 17 Nov 2022 03:54:25 +0000 (21:54 -0600)
committerJacob Bachmeyer <jcb@gnu.org>
Thu, 17 Nov 2022 03:54:25 +0000 (21:54 -0600)
This change of terms aligns with RFC3164.

gatekeeper.pl

index 84c343c1c30d243e1c21ec9f87ee9ba1310c897b..d9f7f724215049b9077c1bb7025a30c6694db4fa 100755 (executable)
@@ -409,7 +409,7 @@ gatekeeper itself and these functions may change without notice.
 }
 
 sub ftp_syslog {
-  my $priority = shift;
+  my $severity = shift;
   my $message = shift;
 
   our $Log_Tag; our $Phase;
@@ -429,7 +429,7 @@ sub ftp_syslog {
   # when using non-valid syslog priorities.
   # That's why we run it inside an eval, with errors printed to STDERR,
   # complete with stack backtrace.
-  eval { syslog($priority, $message) };
+  eval { syslog($severity, $message) };
   cluck($@) if $@;
 }