diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-10-18 15:53:38 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-10-18 15:53:38 +0000 |
commit | e345d26d20c9e2e5aed30b7b6c8f5ad750cc8013 (patch) | |
tree | e0811acf553d72b22fe05f4996625d7f3e3c9073 /src | |
parent | 8decab3dd9bb0e9c5313be590bb09f5b54ff7cb7 (diff) | |
download | nginx-e345d26d20c9e2e5aed30b7b6c8f5ad750cc8013.tar.gz nginx-e345d26d20c9e2e5aed30b7b6c8f5ad750cc8013.zip |
fix typo
Diffstat (limited to 'src')
-rw-r--r-- | src/http/ngx_http_core_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 5bcb30ede..38943fdcf 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -688,7 +688,7 @@ ngx_http_core_find_config_phase(ngx_http_request_t *r, && clcf->client_max_body_size < r->headers_in.content_length_n) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, - "client intented to send too large body: %O bytes", + "client intended to send too large body: %O bytes", r->headers_in.content_length_n); ngx_http_finalize_request(r, NGX_HTTP_REQUEST_ENTITY_TOO_LARGE); |