You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2009/01/10 02:30:29 UTC

svn commit: r733218 - in /httpd/httpd/trunk: CHANGES server/protocol.c

Author: covener
Date: Fri Jan  9 17:30:29 2009
New Revision: 733218

URL: http://svn.apache.org/viewvc?rev=733218&view=rev
Log:
simplifications per niq's review comments

Modified:
    httpd/httpd/trunk/CHANGES
    httpd/httpd/trunk/server/protocol.c

Modified: httpd/httpd/trunk/CHANGES
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=733218&r1=733217&r2=733218&view=diff
==============================================================================
--- httpd/httpd/trunk/CHANGES [utf-8] (original)
+++ httpd/httpd/trunk/CHANGES [utf-8] Fri Jan  9 17:30:29 2009
@@ -3,15 +3,12 @@
 [ 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]

Modified: httpd/httpd/trunk/server/protocol.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/protocol.c?rev=733218&r1=733217&r2=733218&view=diff
==============================================================================
--- httpd/httpd/trunk/server/protocol.c (original)
+++ httpd/httpd/trunk/server/protocol.c Fri Jan  9 17:30:29 2009
@@ -1672,7 +1672,7 @@
     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);