SPDY: fixed arguments supplied for an error message.

This commit is contained in:
Valentin Bartenev 2014-04-08 20:12:30 +04:00
parent 644a43ebd2
commit 5d3f84e4e1

View File

@ -1421,7 +1421,7 @@ ngx_http_spdy_state_data(ngx_http_spdy_connection_t *sc, u_char *pos,
ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0, ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
"client violated connection flow control: length of " "client violated connection flow control: length of "
"received DATA frame %uz, while available window %uz", "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); return ngx_http_spdy_state_protocol_error(sc);
} }