Fixed spelling of logical AND operator, no functional changes.

Found by PVS-Studio.
This commit is contained in:
Sergey Kandaurov 2016-12-07 13:54:30 +03:00
parent 994288e097
commit e031c48705
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@ ngx_output_chain_copy_buf(ngx_output_chain_ctx_t *ctx)
size = ngx_buf_size(src);
size = ngx_min(size, dst->end - dst->pos);
sendfile = ctx->sendfile & !ctx->directio;
sendfile = ctx->sendfile && !ctx->directio;
#if (NGX_SENDFILE_LIMIT)