]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Make sure that the shared memory pointers are propagated down through the various...
authorBradley Nicholes <bnicholes@apache.org>
Fri, 25 Jun 2004 19:50:30 +0000 (19:50 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Fri, 25 Jun 2004 19:50:30 +0000 (19:50 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104038 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/util_ldap_cache_mgr.c

index fe9745fc8ffe7f10a0012f16ecf03c10b843eda5..31b297e552bb0b33c76115c9e56ab65a1fa6f744 100644 (file)
@@ -284,6 +284,10 @@ util_ald_cache_t *util_ald_create_cache(util_ldap_state_t *st,
     if (!cache)
         return NULL;
 
+#if APR_HAS_SHARED_MEMORY
+    cache->rmm_addr = st->cache_rmm;
+    cache->shm_addr = st->cache_shm;
+#endif
     cache->maxentries = st->search_cache_size;
     cache->numentries = 0;
     cache->size = st->search_cache_size / 3;
@@ -542,7 +546,6 @@ char *util_ald_cache_display(request_rec *r, util_ldap_state_t *st)
     if (r->args && strlen(r->args)) {
         char cachetype[5], lint[2];
         unsigned int id, off;
-        int ret;
         char date_str[APR_CTIME_LEN+1];
 
         if ((3 == sscanf(r->args, scanfmt, cachetype, &id, &off, lint)) &&