]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Temporary hack to allow testing to continue. Interesting that
authorJim Jagielski <jim@apache.org>
Mon, 2 Jan 2006 18:25:42 +0000 (18:25 +0000)
committerJim Jagielski <jim@apache.org>
Mon, 2 Jan 2006 18:25:42 +0000 (18:25 +0000)
other FCGI modules (like mod_fcgid) don't bother to test
the return request_id...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/fcgi-proxy-dev@365387 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy_fcgi.c

index fef8874ed9c2ec4465e7db2549c0dc179ec85027..a4560c4086d295b7392264fc302ae4c072d7da40 100644 (file)
@@ -491,8 +491,10 @@ static apr_status_t dispatch(proxy_conn_rec *conn, request_rec *r,
                 ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server,
                              "proxy: FCGI: Got bogus rid %d, expected %d",
                              rid, request_id);
+#if defined(RID_MISMATCH_IS_TERMINAL_ERROR)
                 rv = APR_EINVAL;
                 break;
+#endif
             }
 
             clen |= rheader.contentLengthB1 << 8;