From: Ruediger Pluem Date: Mon, 12 Jul 2010 06:42:23 +0000 (+0000) Subject: * Remove stray '"' that was introduced in r962991 by accident and caused X-Git-Tag: 2.2.16~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbad5085067bb3db86c38efd0c1f50973240f524;p=thirdparty%2Fapache%2Fhttpd.git * Remove stray '"' that was introduced in r962991 by accident and caused the compiler to fail. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@963194 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/request.c b/server/request.c index 0a805ff088e..0a53529f916 100644 --- a/server/request.c +++ b/server/request.c @@ -198,7 +198,7 @@ AP_DECLARE(int) ap_process_request_internal(request_rec *r) if (((access_status = ap_run_auth_checker(r)) != 0) || !ap_auth_type(r)) { return decl_die(access_status, ap_auth_type(r) - ? "check access. "Check your 'Require' directive" + ? "check access. Check your 'Require' directive" : "perform authentication. AuthType not set!", r); } @@ -222,7 +222,7 @@ AP_DECLARE(int) ap_process_request_internal(request_rec *r) if (((access_status = ap_run_auth_checker(r)) != 0) || !ap_auth_type(r)) { return decl_die(access_status, ap_auth_type(r) - ? "check access. "Check your 'Require' directive" + ? "check access. Check your 'Require' directive" : "perform authentication. AuthType not set!", r); }