]> granicus.if.org Git - apache/commitdiff
ap_set_sub_req_protocol and ap_finalize_sub_req_protocol are now
authorAndré Malo <nd@apache.org>
Wed, 21 Apr 2004 21:57:19 +0000 (21:57 +0000)
committerAndré Malo <nd@apache.org>
Wed, 21 Apr 2004 21:57:19 +0000 (21:57 +0000)
exported on Win32 as well

PR: 28523
Submitted by: Edward Rudd <eddie omegaware.com>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103474 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
server/protocol.c

diff --git a/CHANGES b/CHANGES
index 3394e78edb4f3c2ab3197de2476bf76f30d6cc35..9a3bb09d7ba2a02ab42baed79e3740a84de56ac0 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,10 @@ Changes with Apache 2.1.0-dev
 
   [Remove entries to the current 2.0 section below, when backported]
 
+  *) ap_set_sub_req_protocol and ap_finalize_sub_req_protocol are now
+     exported on Win32 as well.  PR 28523.
+     [Edward Rudd <eddie omegaware.com>, André Malo]
+
   *) Include directives no longer refuse to process symlinks on
      directories. Instead there's now a maximum nesting level
      of included directories (128 as distributed). This is configurable
index be69a227ce2831ca8bebd26bde1b060bdb755999..60203064b075611fb27eb5ddc6c42ab8614af6e9 100644 (file)
@@ -977,7 +977,8 @@ request_rec *ap_read_request(conn_rec *conn)
  * *someone* has to set the protocol-specific fields...
  */
 
-void ap_set_sub_req_protocol(request_rec *rnew, const request_rec *r)
+AP_DECLARE(void) ap_set_sub_req_protocol(request_rec *rnew,
+                                         const request_rec *r)
 {
     rnew->the_request     = r->the_request;  /* Keep original request-line */
 
@@ -1015,7 +1016,7 @@ static void end_output_stream(request_rec *r)
     ap_pass_brigade(r->output_filters, bb);
 }
 
-void ap_finalize_sub_req_protocol(request_rec *sub)
+AP_DECLARE(void) ap_finalize_sub_req_protocol(request_rec *sub)
 {
     /* tell the filter chain there is no more content coming */
     if (!sub->eos_sent) {