From: Graham Leggett Date: Sun, 6 Apr 2008 14:05:27 +0000 (+0000) Subject: Fix the defaults, which currently override the config instead of default the config. X-Git-Tag: 2.3.0~801 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ef6e5e3d99289e0325af005614aa12329c0f69c;p=thirdparty%2Fapache%2Fhttpd.git Fix the defaults, which currently override the config instead of default the config. [Ruediger Pluem] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@645243 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/session/mod_session_crypto.c b/modules/session/mod_session_crypto.c index b90d79deddb..80f5b62de86 100644 --- a/modules/session/mod_session_crypto.c +++ b/modules/session/mod_session_crypto.c @@ -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(); diff --git a/modules/session/mod_session_dbd.c b/modules/session/mod_session_dbd.c index 2ae25fca481..b432184576c 100644 --- a/modules/session/mod_session_dbd.c +++ b/modules/session/mod_session_dbd.c @@ -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";