[email protected] wrote:
> Author: jim
> Date: Thu Feb  9 15:07:22 2012
> New Revision: 1242351
> 
> URL: http://svn.apache.org/viewvc?rev=1242351&view=rev
> Log:
> Handle cases, esp when using mod_proxy_fcgi, when we do not
> want SCRIPT_FILENAME to include the query string.
> 
> Modified:
>     httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml
>     httpd/httpd/trunk/modules/proxy/mod_proxy.c
>     httpd/httpd/trunk/modules/proxy/mod_proxy.h
>     httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c
>     httpd/httpd/trunk/server/util_script.c
> 

> Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c
> URL: 
> http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c?rev=1242351&r1=1242350&r2=1242351&view=diff
> ==============================================================================
> --- httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c (original)
> +++ httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c Thu Feb  9 15:07:22 2012
> @@ -188,7 +188,7 @@ static apr_status_t send_data(proxy_conn
>      while (to_write) {
>          apr_size_t n = 0;
>          rv = apr_socket_sendv(s, vec + offset, nvec - offset, &n);
> -        if (rv != APR_SUCCESS) {
> +        if ((rv != APR_SUCCESS) && !APR_STATUS_IS_EAGAIN(rv)) {
>              break;
>          }
>          if (n > 0) {
> 

How is this related to the log message and the query string issue?

Regards

RĂ¼diger

Reply via email to