diff options
author | Piotr Sikora <piotr@cloudflare.com> | 2013-05-21 18:43:43 -0700 |
---|---|---|
committer | Piotr Sikora <piotr@cloudflare.com> | 2013-05-21 18:43:43 -0700 |
commit | c3d20f52d083e976da179f183eb89e1f5974c331 (patch) | |
tree | 384196954a38404644b78065e83ba5cb41ae72d7 /src/os/unix/ngx_linux_sendfile_chain.c | |
parent | 4fd486e68ccc90f38c4bfc1ed9abef99565471cb (diff) | |
download | nginx-c3d20f52d083e976da179f183eb89e1f5974c331.tar.gz nginx-c3d20f52d083e976da179f183eb89e1f5974c331.zip |
Style: remove unnecessary references to HTTP from non-HTTP modules.
No functional changes.
Signed-off-by: Piotr Sikora <piotr@cloudflare.com>
Diffstat (limited to 'src/os/unix/ngx_linux_sendfile_chain.c')
-rw-r--r-- | src/os/unix/ngx_linux_sendfile_chain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/unix/ngx_linux_sendfile_chain.c b/src/os/unix/ngx_linux_sendfile_chain.c index e8f3d5a89..643855ed9 100644 --- a/src/os/unix/ngx_linux_sendfile_chain.c +++ b/src/os/unix/ngx_linux_sendfile_chain.c @@ -181,7 +181,7 @@ ngx_linux_sendfile_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit) } else { c->tcp_nodelay = NGX_TCP_NODELAY_UNSET; - ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, + ngx_log_debug0(NGX_LOG_DEBUG_EVENT, c->log, 0, "no tcp_nodelay"); } } |