APACHE 1.3 STATUS: -*-text-*-
- Last modified at [$Date: 2001/09/11 03:29:10 $]
+ Last modified at [$Date: 2001/09/12 15:16:41 $]
Release:
- 1.3.21: In development
+ 1.3.21: In development - Bill Stoddard has proposed a T&R "soon"
1.3.20: Tagged and rolled May 15, 2001. Announced May 21, 2001.
1.3.19: Tagged and rolled Feb 26, 2001. Announced Mar 01, 2001.
1.3.18: Not released.
Changes with Apache 1.3.21
+ *) UnsetEnv from main body of httpd.conf file didn't work; backport
+ of bugfix from 2.0 codebase. [Gary Benson <gbenson@redhat.com>] PR#8254
+
*) Win32 - add mod_unique_id.so and mod_vhost_alias.so to the build.
[William Rowe]
sconf->unsetenv = sconf->unsetenv ?
ap_pstrcat(cmd->pool, sconf->unsetenv, " ", arg, NULL) :
arg;
+
+ if (sconf->vars_present && !cmd->path) {
+ /* if {Set,Pass}Env FOO, UnsetEnv FOO
+ * are in the base config, merge never happens,
+ * unset never happens, so just unset now
+ */
+ ap_table_unset(sconf->vars, arg);
+ }
+
return NULL;
}