From fbad5085067bb3db86c38efd0c1f50973240f524 Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Mon, 12 Jul 2010 06:42:23 +0000 Subject: [PATCH] * 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 --- server/request.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } -- 2.47.3