Changes with Apache 2.0.49
+ *) Fix a problem with the display of empty variables ("SetEnv foo") in
+ mod_include. PR 24734 [Markus Julen <mj zermatt.net>]
+
*) mod_log_config: Log the minutes component of the timezone correctly.
PR 23642. [Hong-Gunn Chew <hgbug gunnet.org>]
APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2003/12/03 21:38:55 $]
+Last modified at [$Date: 2003/12/04 06:31:01 $]
Release:
bnicholes (looks good on Netware but then NetWare does not
use shared memory.)
- * Fix display of empty variables via mod_include. PR 24734.
- modules/metadata/mod_env.c r1.31
- +1: trawick, nd, striker
-
- * Fix htdbm to generate comment fields in the DBM files correctly.
+ * Fix htdbm to generate comment fields in the DBM files correctly.
(This causes DBMAuthGroupFile to break)
support/htdbm.c r1.11
+1: jerenkrantz, striker, trawick
/* name is mandatory, value is optional. no value means
* set the variable to an empty string
*/
- apr_table_setn(sconf->vars, name, value);
+ apr_table_setn(sconf->vars, name, value ? value : "");
return NULL;
}