diff options
author | Valentin Bartenev <vbart@nginx.com> | 2014-04-08 20:12:30 +0400 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2014-04-08 20:12:30 +0400 |
commit | 5d3f84e4e1010afa5028ee013117c11ecb0f689a (patch) | |
tree | ba138ec6bd17d8f051e9a3b69a2cfc8c571cb477 | |
parent | 644a43ebd281dbe6e6857cad57b979f8cc3d9e88 (diff) | |
download | nginx-5d3f84e4e1010afa5028ee013117c11ecb0f689a.tar.gz nginx-5d3f84e4e1010afa5028ee013117c11ecb0f689a.zip |
SPDY: fixed arguments supplied for an error message.
-rw-r--r-- | src/http/ngx_http_spdy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_spdy.c b/src/http/ngx_http_spdy.c index 33f0f03ac..4f3ea1edc 100644 --- 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_connection_t *sc, u_char *pos, 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); } |