From: Christophe Jaillet Date: Fri, 14 Jun 2019 11:58:00 +0000 (+0000) Subject: Avoid duplicated APLOGNO. X-Git-Tag: 2.5.0-alpha2-ci-test-only~2038 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6689b08ae0538914d15a5cac8744b22280ae2d12;p=thirdparty%2Fapache%2Fhttpd.git Avoid duplicated APLOGNO. 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 --- diff --git a/modules/ldap/util_ldap.c b/modules/ldap/util_ldap.c index 98b6befc86f..e9b25d9d417 100644 --- a/modules/ldap/util_ldap.c +++ b/modules/ldap/util_ldap.c @@ -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); }