From: Igor Sysoev Date: Mon, 29 Oct 2007 15:08:01 +0000 (+0000) Subject: r1547 merge: X-Git-Tag: release-0.5.33~8 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=3e43c7880c266b62f379d46a24b16e23d1ab7960;p=nginx.git r1547 merge: omit trailing zero in directory name --- 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);