]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
style fix for r1831165
authorEric Covener <covener@apache.org>
Tue, 8 May 2018 12:46:44 +0000 (12:46 +0000)
committerEric Covener <covener@apache.org>
Tue, 8 May 2018 12:46:44 +0000 (12:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1831171 13f79535-47bb-0310-9956-ffa450edef68

modules/ldap/util_ldap.c

index c896babb84ba3b2913cfdee41b9fc2daa3604ac5..0bbfbb110622463af5ee416796243362f1c96f39 100644 (file)
@@ -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_tst, 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_tst, 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);