summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2008-12-18 01:46:00 +0000
committerRuediger Pluem <rpluem@apache.org>2008-12-18 01:46:00 +0000
commit8825d114f6243a2a7333eac90ec437208df74d00 (patch)
treeb1803788ef41a022192739cec4312f89caf5db31 /server
parentce5b062a57c9067e2a0cc8ea820f6547bb9a97b2 (diff)
downloadhttpd-8825d114f6243a2a7333eac90ec437208df74d00.tar.gz
Merge r727452 from trunk:
Output -M and -S dumps (modules and vhosts) to stdout instead of stderr. Submitted by: Dan Poirier <poirier pobox.com> Reviewed by: rederpj, covener, rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@727616 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r--server/vhost.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/vhost.c b/server/vhost.c
index d7a0a07e6d..5b79fea598 100644
--- a/server/vhost.c
+++ b/server/vhost.c
@@ -677,7 +677,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);
}
}