projects
/
gatekeeper.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2359da1
)
Rename local variable in ftp_syslog
author
Jacob Bachmeyer
<jcb@gnu.org>
Thu, 17 Nov 2022 03:54:25 +0000
(21:54 -0600)
committer
Jacob Bachmeyer
<jcb@gnu.org>
Thu, 17 Nov 2022 03:54:25 +0000
(21:54 -0600)
This change of terms aligns with RFC3164.
gatekeeper.pl
patch
|
blob
|
blame
|
history
diff --git
a/gatekeeper.pl
b/gatekeeper.pl
index 84c343c1c30d243e1c21ec9f87ee9ba1310c897b..d9f7f724215049b9077c1bb7025a30c6694db4fa 100755
(executable)
--- a/
gatekeeper.pl
+++ b/
gatekeeper.pl
@@
-409,7
+409,7
@@
gatekeeper itself and these functions may change without notice.
}
sub ftp_syslog {
- my $
prio
rity = shift;
+ my $
seve
rity = 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($
prio
rity, $message) };
+ eval { syslog($
seve
rity, $message) };
cluck($@) if $@;
}