summaryrefslogtreecommitdiff
path: root/modules/ldap
diff options
context:
space:
mode:
authorEric Covener <covener@apache.org>2018-05-08 12:46:44 +0000
committerEric Covener <covener@apache.org>2018-05-08 12:46:44 +0000
commitb717273a7ad2450a604bd9ad2da929602b257e45 (patch)
treeb6f1b55f5a1f9342962646ce276b1ff47aecc6c8 /modules/ldap
parentbba7b9805a95ee505178e13eac1f7c82697f741d (diff)
downloadhttpd-b717273a7ad2450a604bd9ad2da929602b257e45.tar.gz
style fix for r1831165
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1831171 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/ldap')
-rw-r--r--modules/ldap/util_ldap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ldap/util_ldap.c b/modules/ldap/util_ldap.c
index c896babb84..0bbfbb1106 100644
--- a/modules/ldap/util_ldap.c
+++ b/modules/ldap/util_ldap.c
@@ -76,7 +76,7 @@ static const char *ldap_cache_mutex_type = "ldap-cache";
static apr_status_t uldap_connection_unbind(void *param);
-static APR_INLINE apr_status_t ldap_cache_lock(util_ldap_state_t* st, request_rec *r) {
+static APR_INLINE apr_status_t ldap_cache_lock(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_lock(st->util_ldap_cache_lock);
@@ -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 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);