]> granicus.if.org Git - apache/commitdiff
Merge r1583007 from trunk:
authorJeff Trawick <trawick@apache.org>
Wed, 14 May 2014 10:47:09 +0000 (10:47 +0000)
committerJeff Trawick <trawick@apache.org>
Wed, 14 May 2014 10:47:09 +0000 (10:47 +0000)
mod_authn_socache: fix logging of bogus rv in r1576233

Submitted by: trawick
Reviewed by: jim, ylavic

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

STATUS
modules/aaa/mod_authn_socache.c

diff --git a/STATUS b/STATUS
index 0753a8f2be6a5fc05eb0068ec628c5976595a1fc..9cce4a179ebcf11c55554f6e76d1dc7c2f41c5bd 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -106,11 +106,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
      2.4.x patch: http://people.apache.org/~covener/patches/httpd-2.4.x-aliasmatch_contextinfo.diff
      +1 covener, jim, ylavic
 
-   * mod_authn_socache: fix logging of bugus rv in r1576233 (now in 2.4.x)
-     trunk patch: http://svn.apache.org/r1583007
-     2.4.x patch: trunk patch works
-     +1: trawick, jim, ylavic
-
 
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   [ New proposals should be added at the end of the list ]
index 597ac863ed95977ead6f3718c7018556a1f23b8f..140f3b7dffbec4d979233210c7dd178f881b3251 100644 (file)
@@ -107,7 +107,7 @@ static int authn_cache_post_config(apr_pool_t *pconf, apr_pool_t *plog,
         errmsg = socache_provider->create(&socache_instance, NULL,
                                           ptmp, pconf);
         if (errmsg) {
-            ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog, APLOGNO(02612)
+            ap_log_perror(APLOG_MARK, APLOG_CRIT, 0, plog, APLOGNO(02612)
                         "failed to create mod_socache_shmcb socache "
                         "instance: %s", errmsg);
             return 500;