Skip to content

Commit

Permalink
see ChangeLog
Browse files Browse the repository at this point in the history
  • Loading branch information
dancy committed Jul 13, 2004
1 parent 83e5e22 commit e048b29
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 10 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
@@ -1,6 +1,15 @@
*** Don't forget to consider incrementing the version number in ftpd.cl
*** [and leave this message at the top of the file]

2004-07-13 root <root@gills.dancysoft.com>
1.0.24
* ftpd.cl: cmd-rnto: Added missing 'fullpath' to format string
when complaining about out of bounds rename.

* debug.cl: Deleted. Cruft removal.

* *.tgz: Updating source and binary tarballs.

2004-01-14 root <root@gills.dancysoft.com>
<no version change>

Expand Down
Binary file removed aftpd-1.0.14-src.tgz
Binary file not shown.
Binary file removed aftpd-1.0.19-src.tgz
Binary file not shown.
Binary file removed aftpd-linux-1.0.14.tgz
Binary file not shown.
Binary file removed aftpd-linux-1.0.19.tgz
Binary file not shown.
Binary file removed aftpd-solaris-1.0.14.tgz
Binary file not shown.
Binary file removed aftpd-solaris-1.0.19.tgz
Binary file not shown.
7 changes: 0 additions & 7 deletions debug.cl

This file was deleted.

6 changes: 3 additions & 3 deletions ftpd.cl
Expand Up @@ -5,11 +5,11 @@
;; (http://opensource.franz.com/preamble.html),
;; known as the LLGPL.
;;
;; $Id: ftpd.cl,v 1.35 2004/01/14 20:04:13 dancy Exp $
;; $Id: ftpd.cl,v 1.36 2004/07/13 16:20:51 dancy Exp $

(in-package :user)

(defvar *ftpd-version* "1.0.23")
(defvar *ftpd-version* "1.0.24")

(eval-when (compile)
(proclaim '(optimize (safety 1) (space 1) (speed 3) (debug 2))))
Expand Down Expand Up @@ -1539,7 +1539,7 @@
(return (outline "553 Rename permission denied.")))

(if (and (restricted client) (out-of-bounds-p client fullpath))
(return (outline "550 ~A: Permission denied.")))
(return (outline "550 ~A: Permission denied." fullpath)))

(handler-case
(when (rename (rename-from client) to)
Expand Down

0 comments on commit e048b29

Please sign in to comment.