]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
simplifications per niq's review comments
authorEric Covener <covener@apache.org>
Sat, 10 Jan 2009 01:30:29 +0000 (01:30 +0000)
committerEric Covener <covener@apache.org>
Sat, 10 Jan 2009 01:30:29 +0000 (01:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@733218 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
server/protocol.c

diff --git a/CHANGES b/CHANGES
index 9514ce4bbcf553e8a548725a7815f76e75a4847a..f910540d38d9d840a3ed3d4d1788f2410ccdad04 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -3,15 +3,12 @@ Changes with Apache 2.3.2
 [ When backported to 2.2.x, remove entry from this file ]
 
  *) core: Translate the the status line to ASCII on EBCDIC platforms in
-    ap_send_interim_response(), affecting interim responses such as those
-    forwarded by mod_proxy_http. [Eric Covener]
+    ap_send_interim_response() and for locally generated "100 Continue"
+    responses.  [Eric Covener]
 
  *) mod_authnz_ldap: Reduce number of initialization debug messages and make
     information more clear. PR 46342 [Dan Poirier]
  
- *) core: Translate locally generated "100-Continue" message to
-    ASCII on EBCDIC systems.  [Eric Covener]
-
  *) prefork: Fix child process hang during graceful restart/stop in
     configurations with multiple listening sockets.  PR 42829.  [Joe Orton,
     Jeff Trawick]
index 36f43297b02db57064e7cc8bda2a631d278c2fed..0098111aca5c49c0287eefe67d1c52f0bdc69ed5 100644 (file)
@@ -1672,7 +1672,7 @@ AP_DECLARE(void) ap_send_interim_response(request_rec *r, int send_headers)
     x.f = r->connection->output_filters;
     x.bb = apr_brigade_create(r->pool, r->connection->bucket_alloc);
 
-    ap_fputstrs(x.f, x.bb, status_line, NULL);
+    ap_fputs(x.f, x.bb, status_line);
     if (send_headers) {
         apr_table_do(send_header, &x, r->headers_out, NULL);
         apr_table_clear(r->headers_out);