You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2001/08/02 07:28:00 UTC

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

wrowe       01/08/01 22:28:00

  Modified:    modules/ssl ssl_scache_dbm.c
  Log:
    Fix typo in prior commit
  
  Revision  Changes    Path
  1.8       +2 -2      httpd-2.0/modules/ssl/ssl_scache_dbm.c
  
  Index: ssl_scache_dbm.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_scache_dbm.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ssl_scache_dbm.c	2001/08/02 05:25:53	1.7
  +++ ssl_scache_dbm.c	2001/08/02 05:28:00	1.8
  @@ -116,7 +116,7 @@
       SSLModConfigRec *mc = myModConfig(s);
       apr_pool_t *p;
   
  -    apr_pool_sub_make(&p, mc->pPool, NULL)
  +    apr_pool_sub_make(&p, mc->pPool, NULL);
       if (p != NULL) {
           /* the correct way */
           unlink(apr_pstrcat(p, mc->szSessionCacheDataFile, SSL_DBM_FILE_SUFFIX_DIR, NULL));
  @@ -329,7 +329,7 @@
       ssl_mutex_on(s);
       for (;;) {
           /* allocate the key array in a memory sub pool */
  -        apr_pool_sub_make(&p, mc->pPool, NULL)
  +        apr_pool_sub_make(&p, mc->pPool, NULL);
           if (p == NULL)
               break;
           if ((keylist = apr_palloc(p, sizeof(dbmkey)*KEYMAX)) == NULL) {