From: William A. Rowe Jr Date: Thu, 2 Aug 2001 05:28:00 +0000 (+0000) Subject: Fix typo in prior commit X-Git-Tag: 2.0.23~92 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8712af14be303924da75398409a63926627cc70c;p=apache Fix typo in prior commit git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89873 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_scache_dbm.c b/modules/ssl/ssl_scache_dbm.c index 4bb704518a..946efe371f 100644 --- a/modules/ssl/ssl_scache_dbm.c +++ b/modules/ssl/ssl_scache_dbm.c @@ -116,7 +116,7 @@ void ssl_scache_dbm_kill(server_rec *s) 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 @@ void ssl_scache_dbm_expire(server_rec *s) 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) {