From bcd943b23e1f6d04564d02ac4e7f3b8a1729829a Mon Sep 17 00:00:00 2001 From: Cliff Woolley Date: Sat, 18 May 2002 05:47:34 +0000 Subject: [PATCH] apr_shm_baseaddr_get() takes an apr_shm_t*, not an apr_shm_t**. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95166 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/util_ldap_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/experimental/util_ldap_cache.c b/modules/experimental/util_ldap_cache.c index 83665a6146..816c3bf5d4 100644 --- a/modules/experimental/util_ldap_cache.c +++ b/modules/experimental/util_ldap_cache.c @@ -301,7 +301,7 @@ apr_status_t util_ldap_cache_init(apr_pool_t *pool, apr_size_t reqsize) /* This will create a rmm "handler" to get into the shared memory area */ apr_rmm_init(&util_ldap_rmm, &rmm_lock, - (void *)apr_shm_baseaddr_get(&util_ldap_shm) , reqsize, pool); + (void *)apr_shm_baseaddr_get(util_ldap_shm), reqsize, pool); #endif util_ldap_cache = util_ald_create_cache(50, util_ldap_url_node_hash, -- 2.40.0