]> granicus.if.org Git - apache/commitdiff
Merge r1745034 from trunk:
authorJim Jagielski <jim@apache.org>
Fri, 10 Jun 2016 14:24:27 +0000 (14:24 +0000)
committerJim Jagielski <jim@apache.org>
Fri, 10 Jun 2016 14:24:27 +0000 (14:24 +0000)
PR59612: Print the ap_expr() error message when an expression cannot
be evaluated in forward-dns provider.

Submitted By: Tianyin Xu <tixu cs.ucsd.edu>
Committed By: covener

Submitted by: covener
Reviewed/backported by: jim

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1747717 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/aaa/mod_authz_host.c

diff --git a/STATUS b/STATUS
index 3d686b1bc646a849889d26643500b7591e136969..4ff99dc76f7497acb64672ccb234b7ae588b0721 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -114,12 +114,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-  *) authz_host,authz_ldap: log messages fix
-     trunk patch: 
-                  http://svn.apache.org/r1745034
-     2.4.x patch: trunk works
-     +1: covener, jailletc36, jim
-
 
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   [ New proposals should be added at the end of the list ]
index dff1d322045bafbb4c937c1e59de493d6fe86dcb..76f95b8460fc54f54a1822507b59b9f5864ea8eb 100644 (file)
@@ -217,6 +217,7 @@ forward_dns_check_authorization(request_rec *r,
     require = ap_expr_str_exec(r, expr, &err);
     if (err) {
       ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(03354)
+                    "authz_host authorize: require forward-dns: "
                     "Can't evaluate require expression: %s", err);
       return AUTHZ_DENIED;
     }