comparison src/core/ngx_file.c @ 210:14050d2bec9b NGINX_0_3_52

nginx 0.3.52 *) Change: the ngx_http_index_module behavior for the "POST /" requests is reverted to the 0.3.40 version state: the module now does not return the 405 error. *) Bugfix: the worker process may got caught in an endless loop if the limit rate was used; bug appeared in 0.3.37. *) Bugfix: ngx_http_charset_module logged "unknown charset" alert, even if the recoding was not needed; bug appeared in 0.3.50. *) Bugfix: if a code response of the PUT request was 409, then a temporary file was not removed.
author Igor Sysoev <http://sysoev.ru>
date Mon, 03 Jul 2006 00:00:00 +0400
parents 54aabf2b0bc6
children fa32d59d9a15
comparison
equal deleted inserted replaced
209:10c6621dce28 210:14050d2bec9b
256 } 256 }
257 257
258 value = cf->args->elts; 258 value = cf->args->elts;
259 259
260 path->name = value[1]; 260 path->name = value[1];
261
262 if (path->name.data[path->name.len - 1] == '/') {
263 path->name.len--;
264 }
261 265
262 if (ngx_conf_full_name(cf->cycle, &path->name) == NGX_ERROR) { 266 if (ngx_conf_full_name(cf->cycle, &path->name) == NGX_ERROR) {
263 return NULL; 267 return NULL;
264 } 268 }
265 269