# HG changeset patch # User Valentin Bartenev # Date 1396973550 -14400 # Node ID e1dcb983d6b3d099192106a966dd1c1deee3751f # Parent 10915ad539b47103e3d1b1295cdc4eae3ccafe39 SPDY: fixed arguments supplied for an error message. diff --git a/src/http/ngx_http_spdy.c b/src/http/ngx_http_spdy.c --- a/src/http/ngx_http_spdy.c +++ b/src/http/ngx_http_spdy.c @@ -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); }