From: Valentin Bartenev Date: Tue, 8 Apr 2014 16:12:30 +0000 (+0400) Subject: SPDY: fixed arguments supplied for an error message. X-Git-Tag: release-1.6.0~7 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=5d3f84e4e1010afa5028ee013117c11ecb0f689a;p=nginx.git SPDY: fixed arguments supplied for an error message. --- 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); }