Fix arg error in HANDLE-RNTO.
This commit is contained in:
parent
1247e7eed9
commit
10567fd22e
4
ftpd.scm
4
ftpd.scm
|
@ -357,7 +357,7 @@
|
||||||
(signal-error! 550
|
(signal-error! 550
|
||||||
(format #f "Could not rename: ~A." path)))
|
(format #f "Could not rename: ~A." path)))
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(rename-file full-path)
|
(rename-file (session-to-be-renamed) full-path)
|
||||||
(register-reply! 250 "File renamed.")
|
(register-reply! 250 "File renamed.")
|
||||||
(set-session-to-be-renamed #f)))))
|
(set-session-to-be-renamed #f)))))
|
||||||
|
|
||||||
|
@ -808,7 +808,7 @@
|
||||||
|
|
||||||
; Version
|
; Version
|
||||||
|
|
||||||
(define *ftpd-version* "$Revision: 1.12 $")
|
(define *ftpd-version* "$Revision: 1.13 $")
|
||||||
|
|
||||||
(define (copy-port->port-binary input-port output-port)
|
(define (copy-port->port-binary input-port output-port)
|
||||||
(let ((buffer (make-string *window-size*)))
|
(let ((buffer (make-string *window-size*)))
|
||||||
|
|
Loading…
Reference in New Issue