From: Sergey Kandaurov Date: Wed, 7 Dec 2016 10:54:30 +0000 (+0300) Subject: Fixed spelling of logical AND operator, no functional changes. X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=fcb2e2864e0c7a245daef1fc11ffedf6598f21df;p=nginx.git Fixed spelling of logical AND operator, no functional changes. Found by PVS-Studio. --- diff --git a/src/core/ngx_output_chain.c b/src/core/ngx_output_chain.c index f7845787b..7f5dc787e 100644 --- a/src/core/ngx_output_chain.c +++ b/src/core/ngx_output_chain.c @@ -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)