]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r727452 from trunk:
authorRuediger Pluem <rpluem@apache.org>
Thu, 18 Dec 2008 01:46:00 +0000 (01:46 +0000)
committerRuediger Pluem <rpluem@apache.org>
Thu, 18 Dec 2008 01:46:00 +0000 (01:46 +0000)
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

CHANGES
STATUS
modules/mappers/mod_so.c
server/vhost.c

diff --git a/CHANGES b/CHANGES
index 0c2a0f81bec9358311cbe69a5b0c6685799ec0d3..d5b2c27fe190f8c92470703fdadb78113fe2d885 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.2.12
 
+  *) 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_cache: When an explicit Expires or Cache-Control header is set, cache
      normally non-cacheable response statuses. PR 46346.
      [Alex Polvi <alex polvi.net>]
diff --git a/STATUS b/STATUS
index 060b1c6c060be6b5d7b4394fb85d18f7924c2d30..2ba3cdd1ffce0875b64d340709b0c6d651343aca 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -86,14 +86,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
- * Output -M and -S dumps (modules and vhosts) to stdout instead of stderr.
-   PR 42571 and PR 44266 (dup).  [Dan Poirier <poirier pobox.com>]
-   Trunk version of patch:
-      http://svn.apache.org/viewvc?view=rev&revision=727452
-   Backport version for 2.2.x of patch (trunk patch applies with offsets):
-      http://people.apache.org/~rederpj/backport_PR42571_moduleVhostToStdout.diff
-   +1: rederpj, covener, rpluem
-
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   [ New proposals should be added at the end of the list ]
 
index 44bed43b69b760f820479df0da8465018ddf9c7d..2d4a54c2e81e250f02f87e753d6637a71e6d0eb3 100644 (file)
@@ -363,7 +363,7 @@ static void dump_loaded_modules(apr_pool_t *p, server_rec *s)
         return;
     }
 
-    apr_file_open_stderr(&out, p);
+    apr_file_open_stdout(&out, p);
 
     apr_file_printf(out, "Loaded Modules:\n");
 
index d7a0a07e6d4fd63d37c5286ca6260149a6468d7f..5b79fea598bcb026b1b9f116f0b3cba0d18e1af3 100644 (file)
@@ -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);
     }
 }