Skip to content

Commit

Permalink
v1.2.23 Fixed insufficient format args error
Browse files Browse the repository at this point in the history
A format arg was missing in a call to maild-log for syntax errors in
the SMTP MAIL command.  Fixed.
  • Loading branch information
dancyatfranz committed Apr 26, 2010
1 parent 43c46df commit e39bedf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion smtp-server.cl
Expand Up @@ -638,7 +638,7 @@ in the HELO command (~A) from client ~A"
(inc-checker-stat senders-rejected-permanently
"command syntax checker")
(outline sock "~a" errstring)
(maild-log "Client from ~a: Syntax error: MAIL ~a" text)
(maild-log "Client from ~a: Syntax error: MAIL ~a" (session-dotted sess) text)
(return))

(setf addr (parse-email-addr addr :allow-null t))
Expand Down
2 changes: 1 addition & 1 deletion version.cl
@@ -1,3 +1,3 @@
(in-package :user)

(defparameter *allegro-maild-version* "v1.2.22")
(defparameter *allegro-maild-version* "v1.2.23")

0 comments on commit e39bedf

Please sign in to comment.