From 5d3f84e4e1010afa5028ee013117c11ecb0f689a Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Tue, 8 Apr 2014 20:12:30 +0400 Subject: [PATCH] SPDY: fixed arguments supplied for an error message. --- src/http/ngx_http_spdy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }