]> granicus.if.org Git - apache/commitdiff
style: where did the tabs come from?
authorGregg Lewis Smith <gsmith@apache.org>
Sat, 24 Jun 2017 05:55:22 +0000 (05:55 +0000)
committerGregg Lewis Smith <gsmith@apache.org>
Sat, 24 Jun 2017 05:55:22 +0000 (05:55 +0000)
no code changes

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1799732 13f79535-47bb-0310-9956-ffa450edef68

server/request.c

index df48efdb4b1d31a9058af671fc4784efa6404a12..d919c0bb15793cfbb4023ac517bffef81d9188b1 100644 (file)
@@ -1225,8 +1225,8 @@ AP_DECLARE(int) ap_directory_walk(request_rec *r)
                  * a 403 and instead send a 404 like other OSs would. PR55887
                  */
                 preg = ap_pregcomp(r->pool,
-                                                      "/(aux|con|com[1-9]|lpt[1-9]|nul|prn)"
-                                                      "($|/|.)", AP_REG_EXTENDED | AP_REG_ICASE);
+               "/(aux|con|com[1-9]|lpt[1-9]|nul|prn)"
+               "($|/|.)", AP_REG_EXTENDED | AP_REG_ICASE);
                 if (ap_regexec(preg, r->uri, 0, NULL, 0) == 0)
                     return r->status = HTTP_NOT_FOUND;
 #endif