1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

A style change for ken :)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92470 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2001-12-14 03:29:13 +00:00
parent fb488a6464
commit 33eaba0f1e

View File

@@ -288,8 +288,9 @@ void ap_process_request(request_rec *r)
access_status = ap_run_quick_handler(r);
if (access_status == DECLINED) {
access_status = ap_process_request_internal(r);
if (access_status == OK)
if (access_status == OK) {
access_status = ap_invoke_handler(r);
}
else if (access_status == DONE) {
/* e.g., something not in storage like TRACE */
access_status = OK;