From 3e43c7880c266b62f379d46a24b16e23d1ab7960 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 29 Oct 2007 15:08:01 +0000 Subject: [PATCH] r1547 merge: omit trailing zero in directory name --- src/http/ngx_http_core_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 347cf01b7..0576dc46c 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -877,7 +877,7 @@ ngx_http_core_content_phase(ngx_http_request_t *r, if (ngx_http_map_uri_to_path(r, &path, &root, 0) != NULL) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, - "directory index of \"%V\" is forbidden", &path); + "directory index of \"%s\" is forbidden", path.data); } ngx_http_finalize_request(r, NGX_HTTP_FORBIDDEN);