From: Jeff Trawick Date: Tue, 16 Oct 2001 11:54:06 +0000 (+0000) Subject: don't lose the retcode in core_create_proxy_req() X-Git-Tag: 2.0.27~131 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4c8e862ca730d037550339ae9a942bbe97dc3abd;p=thirdparty%2Fapache%2Fhttpd.git don't lose the retcode in core_create_proxy_req() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91488 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/core.c b/server/core.c index 65d2bacc080..9fa1b8deeb6 100644 --- a/server/core.c +++ b/server/core.c @@ -3233,7 +3233,7 @@ static int core_create_req(request_rec *r) static int core_create_proxy_req(request_rec *r, request_rec *pr) { - core_create_req(pr); + return core_create_req(pr); } static void register_hooks(apr_pool_t *p)