Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-08-16 00:14:49 +0400
committerIgor Sysoev <igor@sysoev.ru>2008-08-16 00:14:49 +0400
commitb17e33293affc50d5b011684877ca5674d9c6fc5 (patch)
tree76428a4ccf07e9b204223f80562b39a13adf965f /src/core
parent6f39513828a100cf95dfbf4b0b6a544ec43fac5b (diff)
fix log message
Diffstat (limited to 'src/core')
-rw-r--r--src/core/ngx_output_chain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_output_chain.c b/src/core/ngx_output_chain.c
index c4bd67851..db7337cb3 100644
--- a/src/core/ngx_output_chain.c
+++ b/src/core/ngx_output_chain.c
@@ -414,7 +414,7 @@ ngx_output_chain_copy_buf(ngx_buf_t *dst, ngx_buf_t *src, ngx_uint_t sendfile)
if (n != size) {
ngx_log_error(NGX_LOG_ALERT, src->file->log, 0,
- ngx_read_file_n " reads only %z of %O from file",
+ ngx_read_file_n " read only %z of %O from file",
n, size);
if (n == 0) {
return NGX_ERROR;