git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@727452
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.3.1
[ When backported to 2.2.x, remove entry from this file ]
+ *) Output -M and -S dumps (modules and vhosts) to stdout instead of stderr.
+ PR 42571 and PR 44266 (dup). [Dan Poirier <poirier pobox.com>]
+
*) mod_ldap: Avoid a segfault when result->rc is checked in uldap_connection_init
when result is NULL. This could happen if LDAP initialization failed.
PR 45994. [Dan Poirier <poirier pobox.com>]
return;
}
- apr_file_open_stderr(&out, p);
+ apr_file_open_stdout(&out, p);
apr_file_printf(out, "Loaded Modules:\n");
#endif
if (ap_exists_config_define("DUMP_VHOSTS")) {
apr_file_t *thefile = NULL;
- apr_file_open_stderr(&thefile, p);
+ apr_file_open_stdout(&thefile, p);
dump_vhost_config(thefile);
}
}