diff options
author | Eric Covener <covener@apache.org> | 2018-05-08 12:48:13 +0000 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2018-05-08 12:48:13 +0000 |
commit | 5aaea4e05381b0b7064b93dde171cd93f0811975 (patch) | |
tree | 16efaf8748289759538719e8f312fabbe2048fe4 /modules/ldap | |
parent | b717273a7ad2450a604bd9ad2da929602b257e45 (diff) | |
download | httpd-5aaea4e05381b0b7064b93dde171cd93f0811975.tar.gz |
fix bld break in r1831165
I had to disable -Werror in maintainer mode for this file in darwin :/
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1831172 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/ldap')
-rw-r--r-- | modules/ldap/util_ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ldap/util_ldap.c b/modules/ldap/util_ldap.c index 0bbfbb1106..66843f4cba 100644 --- a/modules/ldap/util_ldap.c +++ b/modules/ldap/util_ldap.c @@ -87,7 +87,7 @@ static APR_INLINE apr_status_t ldap_cache_lock(util_ldap_state_t *st, request_re } return rv; } -static APR_INLINE ldap_cache_unlock(util_ldap_state_t *st, request_rec *r) { +static APR_INLINE apr_status_t ldap_cache_unlock(util_ldap_state_t *st, request_rec *r) { apr_status_t rv = APR_SUCCESS; if (st->util_ldap_cache_lock) { apr_status_t rv = apr_global_mutex_unlock(st->util_ldap_cache_lock); |