]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Avoid duplicated APLOGNO.
authorChristophe Jaillet <jailletc36@apache.org>
Fri, 14 Jun 2019 11:58:00 +0000 (11:58 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Fri, 14 Jun 2019 11:58:00 +0000 (11:58 +0000)
In this case, the difference is tiny, but it could ease diagniostic (and numbers are cheap anyway)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1861336 13f79535-47bb-0310-9956-ffa450edef68

modules/ldap/util_ldap.c

index 98b6befc86f75c25c91d204a1881806ebbbcc03e..e9b25d9d417fb8634a3d085bc65070715db2127c 100644 (file)
@@ -85,7 +85,7 @@ static APR_INLINE apr_status_t ldap_cache_lock(util_ldap_state_t *st, request_re
                 ap_log_rerror(APLOG_MARK, APLOG_CRIT, rv, r, APLOGNO(10134) "LDAP cache lock failed");
             }
             else { 
-                ap_log_error(APLOG_MARK, APLOG_CRIT, rv, NULL, APLOGNO(10134) "LDAP cache lock failed");
+                ap_log_error(APLOG_MARK, APLOG_CRIT, rv, NULL, APLOGNO(10165) "LDAP cache lock failed");
             }
             ap_assert(0);
         }
@@ -101,7 +101,7 @@ static APR_INLINE apr_status_t ldap_cache_unlock(util_ldap_state_t *st, request_
                 ap_log_rerror(APLOG_MARK, APLOG_CRIT, rv, r, APLOGNO(10135) "LDAP cache unlock failed");
             }
             else { 
-                ap_log_error(APLOG_MARK, APLOG_CRIT, rv, NULL, APLOGNO(10135) "LDAP cache unlock failed");
+                ap_log_error(APLOG_MARK, APLOG_CRIT, rv, NULL, APLOGNO(10166) "LDAP cache unlock failed");
             }
             ap_assert(0);
         }