You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2008/04/06 16:05:31 UTC

svn commit: r645243 - in /httpd/httpd/trunk/modules/session: mod_session_crypto.c mod_session_dbd.c

Author: minfrin
Date: Sun Apr  6 07:05:27 2008
New Revision: 645243

URL: http://svn.apache.org/viewvc?rev=645243&view=rev
Log:
Fix the defaults, which currently override the config instead of default the config.
[Ruediger Pluem]

Modified:
    httpd/httpd/trunk/modules/session/mod_session_crypto.c
    httpd/httpd/trunk/modules/session/mod_session_dbd.c

Modified: httpd/httpd/trunk/modules/session/mod_session_crypto.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/session/mod_session_crypto.c?rev=645243&r1=645242&r2=645243&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/session/mod_session_crypto.c (original)
+++ httpd/httpd/trunk/modules/session/mod_session_crypto.c Sun Apr  6 07:05:27 2008
@@ -326,10 +326,7 @@
 
     /* 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();

Modified: httpd/httpd/trunk/modules/session/mod_session_dbd.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/session/mod_session_dbd.c?rev=645243&r1=645242&r2=645243&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/session/mod_session_dbd.c (original)
+++ httpd/httpd/trunk/modules/session/mod_session_dbd.c Sun Apr  6 07:05:27 2008
@@ -486,7 +486,6 @@
     (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";