diff options
author | Valentin Bartenev <vbart@nginx.com> | 2014-04-16 11:40:42 +0400 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2014-04-16 11:40:42 +0400 |
commit | c69cabed1dfb6e375c7e2c47554577812a811694 (patch) | |
tree | 686a5225f0392741a969f468e444a9768d3f6444 /src | |
parent | 013449be01f1cd18a1b0e926f17ee99a7095cf67 (diff) | |
download | nginx-c69cabed1dfb6e375c7e2c47554577812a811694.tar.gz nginx-c69cabed1dfb6e375c7e2c47554577812a811694.zip |
SPDY: fixed typo in log message.
Diffstat (limited to 'src')
-rw-r--r-- | src/http/ngx_http_spdy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_spdy.c b/src/http/ngx_http_spdy.c index b935b6fdd..9bd624c82 100644 --- a/src/http/ngx_http_spdy.c +++ b/src/http/ngx_http_spdy.c @@ -943,7 +943,7 @@ ngx_http_spdy_state_syn_stream(ngx_http_spdy_connection_t *sc, u_char *pos, if (sc->processing >= sscf->concurrent_streams) { ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0, - "spdy concurrent streams excessed %ui", sc->processing); + "spdy concurrent streams exceeded %ui", sc->processing); if (ngx_http_spdy_send_rst_stream(sc, sid, NGX_SPDY_REFUSED_STREAM, prio) |