You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2010/03/10 12:02:00 UTC

svn commit: r921302 - /httpd/httpd/trunk/server/protocol.c

Author: trawick
Date: Wed Mar 10 11:02:00 2010
New Revision: 921302

URL: http://svn.apache.org/viewvc?rev=921302&view=rev
Log:
style nit (fix the one unaligned "=" out of fifteen)

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

Modified: httpd/httpd/trunk/server/protocol.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/protocol.c?rev=921302&r1=921301&r2=921302&view=diff
==============================================================================
--- httpd/httpd/trunk/server/protocol.c (original)
+++ httpd/httpd/trunk/server/protocol.c Wed Mar 10 11:02:00 2010
@@ -1116,7 +1116,7 @@ AP_DECLARE(void) ap_set_sub_req_protocol
 
     rnew->status          = HTTP_OK;
 
-    rnew->headers_in = apr_table_copy(rnew->pool, r->headers_in);
+    rnew->headers_in      = apr_table_copy(rnew->pool, r->headers_in);
 
     /* did the original request have a body?  (e.g. POST w/SSI tags)
      * if so, make sure the subrequest doesn't inherit body headers