]> granicus.if.org Git - apache/commitdiff
Fix the defaults, which currently override the config instead of default the config.
authorGraham Leggett <minfrin@apache.org>
Sun, 6 Apr 2008 14:05:27 +0000 (14:05 +0000)
committerGraham Leggett <minfrin@apache.org>
Sun, 6 Apr 2008 14:05:27 +0000 (14:05 +0000)
[Ruediger Pluem]

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@645243 13f79535-47bb-0310-9956-ffa450edef68

modules/session/mod_session_crypto.c
modules/session/mod_session_dbd.c

index b90d79deddbcdc51f204f7f23cd758506d1476c1..80f5b62de86817b16725338d6504839c58ca6e9c 100644 (file)
@@ -326,10 +326,7 @@ static void *create_session_crypto_dir_config(apr_pool_t * p, char *dummy)
 
     /* default cipher AES256-SHA */
     new->cipher = DEFAULT_CIPHER;
-    new->cipher_set = 1;
-
     new->digest = DEFAULT_DIGEST;
-    new->digest_set = 1;
 
     /* initialise SSL */
     apr_ssl_init();
index 2ae25fca481963dc022e49e54c9e7e159b2f5903..b432184576ce25301b433cf09457685520aa855e 100644 (file)
@@ -486,7 +486,6 @@ static void *create_session_dbd_dir_config(apr_pool_t * p, char *dummy)
     (session_dbd_dir_conf *) apr_pcalloc(p, sizeof(session_dbd_dir_conf));
 
     new->remove = 1;
-    new->remove_set = 1;
     
     new->selectlabel = "selectsession";
     new->insertlabel = "insertsession";