w***@apache.org
2014-10-08 21:53:40 UTC
Author: wrowe
Date: Wed Oct 8 21:53:39 2014
New Revision: 1630240
URL: http://svn.apache.org/r1630240
Log:
Fix language syntax foobar
Modified:
httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c
Modified: httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c?rev=1630240&r1=1630239&r2=1630240&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c (original)
+++ httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c Wed Oct 8 21:53:39 2014
@@ -1702,7 +1702,7 @@ static int ftp_cmd_pbsz(request_rec *r,
return FTP_REPLY_SYNTAX_ERROR;
}
- fc->pbsz = int(val)
+ fc->pbsz = (int)val;
fc->response_notes = apr_psprintf(r->pool, "PBSZ Command OK. "
"Protection buffer size set to %d",
fc->pbsz);
Date: Wed Oct 8 21:53:39 2014
New Revision: 1630240
URL: http://svn.apache.org/r1630240
Log:
Fix language syntax foobar
Modified:
httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c
Modified: httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c?rev=1630240&r1=1630239&r2=1630240&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c (original)
+++ httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c Wed Oct 8 21:53:39 2014
@@ -1702,7 +1702,7 @@ static int ftp_cmd_pbsz(request_rec *r,
return FTP_REPLY_SYNTAX_ERROR;
}
- fc->pbsz = int(val)
+ fc->pbsz = (int)val;
fc->response_notes = apr_psprintf(r->pool, "PBSZ Command OK. "
"Protection buffer size set to %d",
fc->pbsz);