[nginx] SPDY: fixed arguments supplied for an error message.
Valentin Bartenev
vbart at nginx.com
Tue Apr 8 16:16:20 UTC 2014
details: http://hg.nginx.org/nginx/rev/e1dcb983d6b3
branches:
changeset: 5649:e1dcb983d6b3
user: Valentin Bartenev <vbart at nginx.com>
date: Tue Apr 08 20:12:30 2014 +0400
description:
SPDY: fixed arguments supplied for an error message.
diffstat:
src/http/ngx_http_spdy.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 10915ad539b4 -r e1dcb983d6b3 src/http/ngx_http_spdy.c
--- a/src/http/ngx_http_spdy.c Tue Apr 08 20:11:31 2014 +0400
+++ b/src/http/ngx_http_spdy.c Tue Apr 08 20:12:30 2014 +0400
@@ -1421,7 +1421,7 @@ ngx_http_spdy_state_data(ngx_http_spdy_c
ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
"client violated connection flow control: length of "
"received DATA frame %uz, while available window %uz",
- stream->id, sc->length, sc->recv_window);
+ sc->length, sc->recv_window);
return ngx_http_spdy_state_protocol_error(sc);
}
More information about the nginx-devel
mailing list