]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
don't lose the retcode in core_create_proxy_req()
authorJeff Trawick <trawick@apache.org>
Tue, 16 Oct 2001 11:54:06 +0000 (11:54 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 16 Oct 2001 11:54:06 +0000 (11:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91488 13f79535-47bb-0310-9956-ffa450edef68

server/core.c

index 65d2bacc08094a49be3ea9dc8f2c45403bb0bb19..9fa1b8deeb6ab320896b520fc5468b8bcd1bb48f 100644 (file)
@@ -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)