From 6d6232479d166db9e25823550797328d3ca8acfd Mon Sep 17 00:00:00 2001 From: Gregg Lewis Smith Date: Sat, 24 Jun 2017 05:55:22 +0000 Subject: [PATCH] style: where did the tabs come from? no code changes git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1799732 13f79535-47bb-0310-9956-ffa450edef68 --- server/request.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/request.c b/server/request.c index df48efdb4b..d919c0bb15 100644 --- a/server/request.c +++ b/server/request.c @@ -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 -- 2.50.1