changeset 5649:e1dcb983d6b3

SPDY: fixed arguments supplied for an error message.
author Valentin Bartenev <vbart@nginx.com>
date Tue, 08 Apr 2014 20:12:30 +0400
parents 10915ad539b4
children 363395795384
files src/http/ngx_http_spdy.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);
     }