You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2015/10/12 13:05:18 UTC

svn commit: r1708090 - /httpd/httpd/trunk/server/request.c

Author: ylavic
Date: Mon Oct 12 11:05:18 2015
New Revision: 1708090

URL: http://svn.apache.org/viewvc?rev=1708090&view=rev
Log:
core: follow up to r1708084,1708088: remove tabs.

Modified:
    httpd/httpd/trunk/server/request.c

Modified: httpd/httpd/trunk/server/request.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/request.c?rev=1708090&r1=1708089&r2=1708090&view=diff
==============================================================================
--- httpd/httpd/trunk/server/request.c (original)
+++ httpd/httpd/trunk/server/request.c Mon Oct 12 11:05:18 2015
@@ -2520,9 +2520,9 @@ AP_DECLARE(int) ap_run_sub_req(request_r
     if (retval == DECLINED) {
         retval = ap_invoke_handler(r);
     }
-	if (retval == DONE) {
-		retval = OK;
-	}
+    if (retval == DONE) {
+        retval = OK;
+    }
     ap_finalize_sub_req_protocol(r);
     return retval;
 }