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 8b8b6f41e6
commit fcb2e2864e

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)