
fuankg at apache
Jun 26, 2009, 8:29 AM
Post #1 of 1
(180 views)
Permalink
|
|
svn commit: r788741 - /httpd/mod_ftp/trunk/modules/ftp/ftp_message.c
|
|
Author: fuankg Date: Fri Jun 26 15:29:01 2009 New Revision: 788741 URL: http://svn.apache.org/viewvc?rev=788741&view=rev Log: switch message placeholders %a <-> %A to match docu. Modified: httpd/mod_ftp/trunk/modules/ftp/ftp_message.c Modified: httpd/mod_ftp/trunk/modules/ftp/ftp_message.c URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/modules/ftp/ftp_message.c?rev=788741&r1=788740&r2=788741&view=diff ============================================================================== --- httpd/mod_ftp/trunk/modules/ftp/ftp_message.c (original) +++ httpd/mod_ftp/trunk/modules/ftp/ftp_message.c Fri Jun 26 15:29:01 2009 @@ -67,10 +67,10 @@ apr_snprintf(outptr, outlen, "%s", fc->orig_server->server_admin); break; - case 'a': + case 'A': apr_snprintf(outptr, outlen, "%s", c->local_ip); break; - case 'A': + case 'a': apr_snprintf(outptr, outlen, "%s", c->remote_ip); break; case 'u':
|