;;; -*- Mode:Lisp; Readtable:CL; Package:USER; Base:10; Patch-File:T -*- ;;; Patch file for System version 123.275 ;;; Reason: ;;; You couldn't rename a file with FTP. ;;; Written 11-May-88 18:31:25 by pld (Peter L. DeWolf) at site Gigamos Cambridge ;;; while running on Azathoth from band 3 ;;; with Experimental System 123.270, Experimental Local-File 73.5, Experimental FILE-Server 22.5, Experimental Unix-Interface 11.0, Experimental KERMIT 34.3, Experimental ZMail 71.2, Experimental Lambda-Diag 15.0, Experimental Tape 22.4, microcode 1756, SDU Boot Tape 3.14, SDU ROM 8, the old ones. ; From modified file DJ: L.NETWORK.IP-TCP.SERVER; FTP.LISP#83 at 11-May-88 18:31:26 #10R FTP#: (COMPILER-LET ((*PACKAGE* (GLOBAL:PKG-FIND-PACKAGE "FTP"))) (COMPILER::PATCH-SOURCE-FILE "SYS: NETWORK; IP-TCP; SERVER; FTP  " (defun ftp-renamefrom (state name) (unless (ftp-pathname-error-reply state (setq name (ftp-parse-pathname state name))) (unless (ftp-file-error-reply state (ftp-file-operation state #'probe-file name)) (ftp-reply state 350 "File exists, ready for destination name.") name))) ))