From: Gregg Lewis Smith Date: Sat, 24 Jun 2017 05:55:22 +0000 (+0000) Subject: style: where did the tabs come from? X-Git-Tag: 2.5.0-alpha~336 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6d6232479d166db9e25823550797328d3ca8acfd;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/server/request.c b/server/request.c index df48efdb4b1..d919c0bb157 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