diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-10-22 10:15:48 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-10-22 10:15:48 +0000 |
commit | 9e039cfc9e2cd89a5e07f2071b162dab0666dab5 (patch) | |
tree | eb37c67fea95ea7ce6f5917f651ab57b5b2d8dc9 /src | |
parent | a40caa172c1f80f1974db1bf259ba65de577b5b0 (diff) | |
download | nginx-9e039cfc9e2cd89a5e07f2071b162dab0666dab5.tar.gz nginx-9e039cfc9e2cd89a5e07f2071b162dab0666dab5.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 38943fdcf..6c80bc65b 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -1605,7 +1605,7 @@ ngx_http_named_location(ngx_http_request_t *r, ngx_str_t *name) } ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, - "could not find name location \"%V\"", name); + "could not find named location \"%V\"", name); ngx_http_finalize_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR); return NGX_DONE; |