| 2973 | } |
| 2974 | |
| 2975 | static int util_ldap_pre_config(apr_pool_t *pconf, apr_pool_t *plog, |
| 2976 | apr_pool_t *ptemp) |
| 2977 | { |
| 2978 | apr_status_t result; |
| 2979 | |
| 2980 | result = ap_mutex_register(pconf, ldap_cache_mutex_type, NULL, |
| 2981 | APR_LOCK_DEFAULT, 0); |
| 2982 | if (result != APR_SUCCESS) { |
| 2983 | return result; |
| 2984 | } |
| 2985 | |
| 2986 | return OK; |
| 2987 | } |
| 2988 | |
| 2989 | static int util_ldap_post_config(apr_pool_t *p, apr_pool_t *plog, |
| 2990 | apr_pool_t *ptemp, server_rec *s) |
nothing calls this directly
no test coverage detected