diff options
author | Jeff Trawick <trawick@apache.org> | 2010-03-10 12:02:00 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2010-03-10 12:02:00 +0100 |
commit | e8643541c50a73678eaba9ae09dbe2c2bf0541c3 (patch) | |
tree | 6f849f0f9e60bb06351136fd8092f9316efd0f7c /server/protocol.c | |
parent | Typo (diff) | |
download | apache2-e8643541c50a73678eaba9ae09dbe2c2bf0541c3.tar.xz apache2-e8643541c50a73678eaba9ae09dbe2c2bf0541c3.zip |
style nit (fix the one unaligned "=" out of fifteen)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@921302 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | server/protocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/protocol.c b/server/protocol.c index ef4c4b7659..7b5c9b922d 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -1116,7 +1116,7 @@ AP_DECLARE(void) ap_set_sub_req_protocol(request_rec *rnew, 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 |