From: Ryan Bloom Date: Wed, 15 Dec 1999 00:59:56 +0000 (+0000) Subject: Cleanup the Windows build a bit by getting rid of more platform dependant X-Git-Tag: 1.3.10~93 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b7c1b330a53779b5031246f657914620de9f6dc;p=apache Cleanup the Windows build a bit by getting rid of more platform dependant code. Still won't compile cleanly, but we are closer. I am hoping for a clean Windows compile by Friday. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84294 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/vhost.c b/server/vhost.c index 7af335235a..a039a164b3 100644 --- a/server/vhost.c +++ b/server/vhost.c @@ -647,10 +647,8 @@ void ap_fini_vhost_config(ap_context_t *p, server_rec *main_s) dump_iphash_statistics(main_s); #endif if (getenv("DUMP_VHOSTS")) { - int errfileno = STDERR_FILENO; ap_file_t *thefile = NULL; - - ap_put_os_file(&thefile, &errfileno, p); + ap_open_stderr(&thefile, p); dump_vhost_config(thefile); } }