Add missing parameter to format in maybe-open-logfile.
This commit is contained in:
parent
6156c77161
commit
f0dbc7acba
|
@ -300,8 +300,9 @@
|
||||||
((errno packet)
|
((errno packet)
|
||||||
(else
|
(else
|
||||||
(format (current-error-port)
|
(format (current-error-port)
|
||||||
"[ftpd] Warning: Unable to write logs to ~S. Logging is now made to (current-error-port).~%[ftpd] (To disable logging at all, either leave the logfile argument or give #f as logfile)~%")
|
"[ftpd] Warning: Unable to write logs to ~S. Logging is now made to (current-error-port).~%[ftpd] (To disable logging at all, either leave the logfile argument or give #f as logfile)~%"
|
||||||
(current-error-port)))
|
maybe-logfile)
|
||||||
|
(current-error-port)))
|
||||||
(and maybe-logfile
|
(and maybe-logfile
|
||||||
(open-output-file maybe-logfile
|
(open-output-file maybe-logfile
|
||||||
(bitwise-ior open/create open/append)))))
|
(bitwise-ior open/create open/append)))))
|
||||||
|
|
Loading…
Reference in New Issue