comparison src/http/ngx_http_spdy.c @ 5652:b6240baead00

SPDY: fixed typo in log message.
author Valentin Bartenev <vbart@nginx.com>
date Wed, 16 Apr 2014 11:40:42 +0400
parents 363395795384
children de93bbe2d8cd 7ea6f5140ed9
comparison
equal deleted inserted replaced
5651:b51bd021808b 5652:b6240baead00
941 ngx_http_spdy_module); 941 ngx_http_spdy_module);
942 942
943 if (sc->processing >= sscf->concurrent_streams) { 943 if (sc->processing >= sscf->concurrent_streams) {
944 944
945 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0, 945 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
946 "spdy concurrent streams excessed %ui", sc->processing); 946 "spdy concurrent streams exceeded %ui", sc->processing);
947 947
948 if (ngx_http_spdy_send_rst_stream(sc, sid, NGX_SPDY_REFUSED_STREAM, 948 if (ngx_http_spdy_send_rst_stream(sc, sid, NGX_SPDY_REFUSED_STREAM,
949 prio) 949 prio)
950 != NGX_OK) 950 != NGX_OK)
951 { 951 {