You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by do...@apache.org on 2002/03/15 02:44:14 UTC

cvs commit: httpd-2.0/modules/ssl ssl_scache_shmht.c

dougm       02/03/14 17:44:14

  Modified:    modules/ssl ssl_scache_shmht.c
  Log:
  remove stray log message (from madhu)
  
  Revision  Changes    Path
  1.7       +0 -3      httpd-2.0/modules/ssl/ssl_scache_shmht.c
  
  Index: ssl_scache_shmht.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_scache_shmht.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ssl_scache_shmht.c	14 Mar 2002 23:31:23 -0000	1.6
  +++ ssl_scache_shmht.c	15 Mar 2002 01:44:14 -0000	1.7
  @@ -78,9 +78,6 @@
       SSLModConfigRec *mc = myModConfig((server_rec *)opt_param);
   
       apr_rmm_off_t off = apr_rmm_calloc(mc->pSessionCacheDataRMM, (number*size));
  -ssl_log((server_rec *)opt_param, SSL_LOG_ERROR,
  -    "rmm calloc returning %ld %ld size %d",
  -    off, apr_rmm_addr_get(mc->pSessionCacheDataRMM, off), (number * size));
   
       return apr_rmm_addr_get(mc->pSessionCacheDataRMM, off);
   }