summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Kew <niq@apache.org>2005-12-05 18:22:29 +0000
committerNick Kew <niq@apache.org>2005-12-05 18:22:29 +0000
commit24c5cde238092b7598f0772de85d1daf7f0e17c1 (patch)
tree8823391bdcfbc649d4b2b21668b05698ad7ee619
parent78513efe1204d5d77fe28d663ec8aa471c22e387 (diff)
downloadhttpd-24c5cde238092b7598f0772de85d1daf7f0e17c1.tar.gz
PR 36090
Fix recursive ErrorDocument handling git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@354118 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/http/http_request.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/http/http_request.c b/modules/http/http_request.c
index 5ee236e486..95e093cd31 100644
--- a/modules/http/http_request.c
+++ b/modules/http/http_request.c
@@ -247,6 +247,7 @@ void ap_process_async_request(request_rec *r)
ap_finalize_request_protocol(r);
}
else {
+ r->status = HTTP_OK;
ap_die(access_status, r);
}