You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jw...@apache.org on 2002/05/18 07:47:34 UTC

cvs commit: httpd-ldap/ldap-cache util_ldap_cache.c

jwoolley    02/05/17 22:47:34

  Modified:    ldap-cache util_ldap_cache.c
  Log:
  apr_shm_baseaddr_get() takes an apr_shm_t*, not an apr_shm_t**.
  
  Revision  Changes    Path
  1.3       +1 -1      httpd-ldap/ldap-cache/util_ldap_cache.c
  
  Index: util_ldap_cache.c
  ===================================================================
  RCS file: /home/cvs/httpd-ldap/ldap-cache/util_ldap_cache.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -d -u -r1.2 -r1.3
  --- util_ldap_cache.c	26 Apr 2002 21:54:38 -0000	1.2
  +++ util_ldap_cache.c	18 May 2002 05:47:34 -0000	1.3
  @@ -301,7 +301,7 @@
   
       /* 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,