comparison src/http/modules/ngx_http_dav_module.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 af37b7cb6698
children 56688ed172c8
comparison
equal deleted inserted replaced
209:10c6621dce28 210:14050d2bec9b
252 } else { 252 } else {
253 status = NGX_HTTP_NO_CONTENT; 253 status = NGX_HTTP_NO_CONTENT;
254 } 254 }
255 255
256 if (ngx_is_dir(&fi)) { 256 if (ngx_is_dir(&fi)) {
257 if (ngx_delete_file(temp->data) == NGX_FILE_ERROR) {
258 ngx_log_error(NGX_LOG_CRIT, r->connection->log, ngx_errno,
259 ngx_delete_file_n " \"%s\" failed",
260 temp->data);
261 }
262
257 ngx_http_finalize_request(r, NGX_HTTP_CONFLICT); 263 ngx_http_finalize_request(r, NGX_HTTP_CONFLICT);
258 return; 264 return;
259 } 265 }
260 266
261 if (ngx_rename_file(temp->data, path.data) != NGX_FILE_ERROR) { 267 if (ngx_rename_file(temp->data, path.data) != NGX_FILE_ERROR) {
293 299
294 err = ngx_errno; 300 err = ngx_errno;
295 } 301 }
296 302
297 #endif 303 #endif
304
305 if (ngx_delete_file(temp->data) == NGX_FILE_ERROR) {
306 ngx_log_error(NGX_LOG_CRIT, r->connection->log, ngx_errno,
307 ngx_delete_file_n " \"%s\" failed",
308 temp->data);
309 }
298 310
299 ngx_http_finalize_request(r, ngx_http_dav_error(r, err, NGX_HTTP_CONFLICT, 311 ngx_http_finalize_request(r, ngx_http_dav_error(r, err, NGX_HTTP_CONFLICT,
300 ngx_rename_file_n, 312 ngx_rename_file_n,
301 path.data)); 313 path.data));
302 return; 314 return;