diff src/http/ngx_http_spdy.c @ 5508:9053fdcea4b7

SPDY: better name for queued frames counter. No functional changes.
author Valentin Bartenev <vbart@nginx.com>
date Tue, 14 Jan 2014 16:24:45 +0400
parents a30bba3c72e8
children 877a7bd72070
line wrap: on
line diff
--- a/src/http/ngx_http_spdy.c
+++ b/src/http/ngx_http_spdy.c
@@ -2861,9 +2861,9 @@ ngx_http_spdy_finalize_connection(ngx_ht
 
             fc->error = 1;
 
-            if (stream->waiting) {
-                r->blocked -= stream->waiting;
-                stream->waiting = 0;
+            if (stream->queued) {
+                r->blocked -= stream->queued;
+                stream->queued = 0;
 
                 ev = fc->write;
                 ev->delayed = 0;