Re: svn commit: r396063 - in /httpd/httpd/trunk: modules/proxy/config.m4 modules/proxy/fcgi_protocol.h modules/proxy/mod_proxy_balancer.c modules/proxy/mod_proxy_fcgi.c support/ support/Makefile.in su

2006-04-28 Thread Joe Orton
On Sat, Apr 22, 2006 at 03:44:07AM -, [EMAIL PROTECTED] wrote:
 Author: rooneg
 Date: Fri Apr 21 20:44:05 2006
 New Revision: 396063
 
 URL: http://svn.apache.org/viewcvs?rev=396063view=rev
 Log:
 Merge the fcgi-proxy-dev branch to trunk, adding a FastCGI back end for
 mod_proxy.  This log message is just a summary of the changes, for the
 full original log messages see r357431:393955 in branches/fcgi-proxy-dev.

This code has the following gcc (4.1 on x86_64) warnings:

mod_proxy_fcgi.c: In function 'send_environment':
mod_proxy_fcgi.c:269: warning: implicit declaration of function 
'ap_add_common_vars'
mod_proxy_fcgi.c:270: warning: implicit declaration of function 
'ap_add_cgi_vars'
mod_proxy_fcgi.c: In function 'handle_headers':
mod_proxy_fcgi.c:467: warning: implicit declaration of function 
'ap_scan_script_header_err_brigade'
mod_proxy_fcgi.c: In function 'dispatch':
mod_proxy_fcgi.c:677: warning: format '%d' expects type 'int', but argument 7 
has type 'apr_size_t'
mod_proxy_fcgi.c: In function 'proxy_fcgi_handler':
mod_proxy_fcgi.c:62: warning: 'brb.reserved[0]' is used uninitialized in this 
function
mod_proxy_fcgi.c:63: warning: 'brb.reserved[1]' is used uninitialized in this 
function
mod_proxy_fcgi.c:64: warning: 'brb.reserved[2]' is used uninitialized in this 
function
mod_proxy_fcgi.c:65: warning: 'brb.reserved[3]' is used uninitialized in this 
function
mod_proxy_fcgi.c:66: warning: 'brb.reserved[4]' is used uninitialized in this 
function



Re: svn commit: r396063 - in /httpd/httpd/trunk: modules/proxy/config.m4 modules/proxy/fcgi_protocol.h modules/proxy/mod_proxy_balancer.c modules/proxy/mod_proxy_fcgi.c support/ support/Makefile.in su

2006-04-28 Thread Garrett Rooney

On 4/28/06, Joe Orton [EMAIL PROTECTED] wrote:

On Sat, Apr 22, 2006 at 03:44:07AM -, [EMAIL PROTECTED] wrote:
 Author: rooneg
 Date: Fri Apr 21 20:44:05 2006
 New Revision: 396063

 URL: http://svn.apache.org/viewcvs?rev=396063view=rev
 Log:
 Merge the fcgi-proxy-dev branch to trunk, adding a FastCGI back end for
 mod_proxy.  This log message is just a summary of the changes, for the
 full original log messages see r357431:393955 in branches/fcgi-proxy-dev.

This code has the following gcc (4.1 on x86_64) warnings:

mod_proxy_fcgi.c: In function 'send_environment':
mod_proxy_fcgi.c:269: warning: implicit declaration of function 
'ap_add_common_vars'
mod_proxy_fcgi.c:270: warning: implicit declaration of function 
'ap_add_cgi_vars'
mod_proxy_fcgi.c: In function 'handle_headers':
mod_proxy_fcgi.c:467: warning: implicit declaration of function 
'ap_scan_script_header_err_brigade'
mod_proxy_fcgi.c: In function 'dispatch':
mod_proxy_fcgi.c:677: warning: format '%d' expects type 'int', but argument 7 
has type 'apr_size_t'
mod_proxy_fcgi.c: In function 'proxy_fcgi_handler':
mod_proxy_fcgi.c:62: warning: 'brb.reserved[0]' is used uninitialized in this 
function
mod_proxy_fcgi.c:63: warning: 'brb.reserved[1]' is used uninitialized in this 
function
mod_proxy_fcgi.c:64: warning: 'brb.reserved[2]' is used uninitialized in this 
function
mod_proxy_fcgi.c:65: warning: 'brb.reserved[3]' is used uninitialized in this 
function
mod_proxy_fcgi.c:66: warning: 'brb.reserved[4]' is used uninitialized in this 
function


Thanks!  Should be fixed in r397968.

-garrett