Add missing parameter to format in maybe-open-logfile.
This commit is contained in:
parent
6156c77161
commit
f0dbc7acba
|
@ -300,8 +300,9 @@
|
|||
((errno packet)
|
||||
(else
|
||||
(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)~%")
|
||||
(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)~%"
|
||||
maybe-logfile)
|
||||
(current-error-port)))
|
||||
(and maybe-logfile
|
||||
(open-output-file maybe-logfile
|
||||
(bitwise-ior open/create open/append)))))
|
||||
|
|
Loading…
Reference in New Issue