[nginx] SPDY: fixed code style, no functional changes.
Valentin Bartenev
vbart at nginx.com
Thu Jun 13 12:29:54 UTC 2013
details: http://hg.nginx.org/nginx/rev/4ef49081ef4c
branches:
changeset: 5251:4ef49081ef4c
user: Valentin Bartenev <vbart at nginx.com>
date: Thu Jun 13 16:28:42 2013 +0400
description:
SPDY: fixed code style, no functional changes.
diffstat:
src/http/ngx_http_spdy_filter_module.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diffs (13 lines):
diff -r 3bb51e5afa9e -r 4ef49081ef4c src/http/ngx_http_spdy_filter_module.c
--- a/src/http/ngx_http_spdy_filter_module.c Thu Jun 13 14:50:10 2013 +0400
+++ b/src/http/ngx_http_spdy_filter_module.c Thu Jun 13 16:28:42 2013 +0400
@@ -308,7 +308,8 @@ ngx_http_spdy_header_filter(ngx_http_req
last = ngx_http_spdy_nv_write_name(last, "status");
if (r->headers_out.status_line.len) {
- last = ngx_http_spdy_nv_write_vlen(last, r->headers_out.status_line.len);
+ last = ngx_http_spdy_nv_write_vlen(last,
+ r->headers_out.status_line.len);
last = ngx_cpymem(last, r->headers_out.status_line.data,
r->headers_out.status_line.len);
} else {
More information about the nginx-devel
mailing list