diff options
author | Paul J. Reder <rederpj@apache.org> | 2008-12-17 19:03:09 +0100 |
---|---|---|
committer | Paul J. Reder <rederpj@apache.org> | 2008-12-17 19:03:09 +0100 |
commit | 3474fcaceee73405eefc5b0e6b0897b82a0a3836 (patch) | |
tree | 02e4eed133070c1fdbb15642e99a234b00eb4d33 /server/vhost.c | |
parent | *) mod_ldap: Avoid a segfault when result->rc is checked in uldap_connection_... (diff) | |
download | apache2-3474fcaceee73405eefc5b0e6b0897b82a0a3836.tar.xz apache2-3474fcaceee73405eefc5b0e6b0897b82a0a3836.zip |
Output -M and -S dumps (modules and vhosts) to stdout instead of stderr.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@727452 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/vhost.c')
-rw-r--r-- | server/vhost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/vhost.c b/server/vhost.c index 8aebcfd023..6ed6cfea83 100644 --- a/server/vhost.c +++ b/server/vhost.c @@ -676,7 +676,7 @@ AP_DECLARE(void) ap_fini_vhost_config(apr_pool_t *p, server_rec *main_s) #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); } } |