aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/http/ngx_http_spdy_filter_module.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http/ngx_http_spdy_filter_module.c b/src/http/ngx_http_spdy_filter_module.c
index a49de490a..805177651 100644
--- a/src/http/ngx_http_spdy_filter_module.c
+++ b/src/http/ngx_http_spdy_filter_module.c
@@ -308,7 +308,8 @@ ngx_http_spdy_header_filter(ngx_http_request_t *r)
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 {