]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* Remove stray '"' that was introduced in r962991 by accident and caused
authorRuediger Pluem <rpluem@apache.org>
Mon, 12 Jul 2010 06:42:23 +0000 (06:42 +0000)
committerRuediger Pluem <rpluem@apache.org>
Mon, 12 Jul 2010 06:42:23 +0000 (06:42 +0000)
  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

index 0a805ff088e02f4ab4cddc85889db11540d13dc1..0a53529f916ef2d2eae8f4952cd6240002947775 100644 (file)
@@ -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);
                 }