You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2019/06/14 11:58:00 UTC

svn commit: r1861336 - /httpd/httpd/trunk/modules/ldap/util_ldap.c

Author: jailletc36
Date: Fri Jun 14 11:58:00 2019
New Revision: 1861336

URL: http://svn.apache.org/viewvc?rev=1861336&view=rev
Log:
Avoid duplicated APLOGNO.

In this case, the difference is tiny, but it could ease diagniostic (and numbers are cheap anyway)

Modified:
    httpd/httpd/trunk/modules/ldap/util_ldap.c

Modified: httpd/httpd/trunk/modules/ldap/util_ldap.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ldap/util_ldap.c?rev=1861336&r1=1861335&r2=1861336&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ldap/util_ldap.c (original)
+++ httpd/httpd/trunk/modules/ldap/util_ldap.c Fri Jun 14 11:58:00 2019
@@ -85,7 +85,7 @@ static APR_INLINE apr_status_t ldap_cach
                 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_cach
                 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);
         }