changeset 3182:6ddaac3e0bf7

omit '\0' from "Location" header on MKCOL request
author Igor Sysoev <igor@sysoev.ru>
date Tue, 06 Oct 2009 09:32:21 +0000
parents 36f6407817dc
children b87542338ac3
files src/http/modules/ngx_http_dav_module.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/modules/ngx_http_dav_module.c
+++ b/src/http/modules/ngx_http_dav_module.c
@@ -490,6 +490,7 @@ ngx_http_dav_mkcol_handler(ngx_http_requ
     p = ngx_http_map_uri_to_path(r, &path, &root, 0);
 
     *(p - 1) = '\0';
+    r->uri.len--;
 
     ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
                    "http mkcol path: \"%s\"", path.data);