mirror of
https://github.com/nginx/nginx.git
synced 2026-07-11 19:34:45 +00:00
Fixed spelling of logical AND operator, no functional changes.
Found by PVS-Studio.
This commit is contained in:
parent
8b8b6f41e6
commit
fcb2e2864e
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue