Add missing parameter to format in maybe-open-logfile.

This commit is contained in:
mainzelm 2002-12-20 07:53:43 +00:00
parent 6156c77161
commit f0dbc7acba
1 changed files with 3 additions and 2 deletions

View File

@ -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)))))