comparison src/http/modules/ngx_http_dav_module.c @ 1769:a35bc4007ec3

tree.init_handler is never called
author Igor Sysoev <igor@sysoev.ru>
date Fri, 21 Dec 2007 17:50:49 +0000
parents b87ce8dcba37
children 7405719e4848
comparison
equal deleted inserted replaced
1768:0b8dc0e7616d 1769:a35bc4007ec3
35 static ngx_int_t ngx_http_dav_handler(ngx_http_request_t *r); 35 static ngx_int_t ngx_http_dav_handler(ngx_http_request_t *r);
36 36
37 static void ngx_http_dav_put_handler(ngx_http_request_t *r); 37 static void ngx_http_dav_put_handler(ngx_http_request_t *r);
38 38
39 static ngx_int_t ngx_http_dav_delete_handler(ngx_http_request_t *r); 39 static ngx_int_t ngx_http_dav_delete_handler(ngx_http_request_t *r);
40 static ngx_int_t ngx_http_dav_no_init(void *ctx, void *prev);
41 static ngx_int_t ngx_http_dav_noop(ngx_tree_ctx_t *ctx, ngx_str_t *path); 40 static ngx_int_t ngx_http_dav_noop(ngx_tree_ctx_t *ctx, ngx_str_t *path);
42 static ngx_int_t ngx_http_dav_delete_dir(ngx_tree_ctx_t *ctx, ngx_str_t *path); 41 static ngx_int_t ngx_http_dav_delete_dir(ngx_tree_ctx_t *ctx, ngx_str_t *path);
43 static ngx_int_t ngx_http_dav_delete_file(ngx_tree_ctx_t *ctx, ngx_str_t *path); 42 static ngx_int_t ngx_http_dav_delete_file(ngx_tree_ctx_t *ctx, ngx_str_t *path);
44 43
45 static ngx_int_t ngx_http_dav_mkcol_handler(ngx_http_request_t *r, 44 static ngx_int_t ngx_http_dav_mkcol_handler(ngx_http_request_t *r,
407 return rc; 406 return rc;
408 } 407 }
409 408
410 409
411 static ngx_int_t 410 static ngx_int_t
412 ngx_http_dav_no_init(void *ctx, void *prev)
413 {
414 return NGX_OK;
415 }
416
417
418 static ngx_int_t
419 ngx_http_dav_noop(ngx_tree_ctx_t *ctx, ngx_str_t *path) 411 ngx_http_dav_noop(ngx_tree_ctx_t *ctx, ngx_str_t *path)
420 { 412 {
421 return NGX_OK; 413 return NGX_OK;
422 } 414 }
423 415
708 ngx_create_dir_n, copy.path.data); 700 ngx_create_dir_n, copy.path.data);
709 } 701 }
710 702
711 copy.len = path.len; 703 copy.len = path.len;
712 704
713 tree.init_handler = ngx_http_dav_no_init; 705 tree.init_handler = NULL;
714 tree.file_handler = ngx_http_dav_copy_file; 706 tree.file_handler = ngx_http_dav_copy_file;
715 tree.pre_tree_handler = ngx_http_dav_copy_dir; 707 tree.pre_tree_handler = ngx_http_dav_copy_dir;
716 tree.post_tree_handler = ngx_http_dav_copy_dir_time; 708 tree.post_tree_handler = ngx_http_dav_copy_dir_time;
717 tree.spec_handler = ngx_http_dav_noop; 709 tree.spec_handler = ngx_http_dav_noop;
718 tree.data = &copy; 710 tree.data = &copy;
958 char *failed; 950 char *failed;
959 ngx_tree_ctx_t tree; 951 ngx_tree_ctx_t tree;
960 952
961 if (dir) { 953 if (dir) {
962 954
963 tree.init_handler = ngx_http_dav_no_init; 955 tree.init_handler = NULL;
964 tree.file_handler = ngx_http_dav_delete_file; 956 tree.file_handler = ngx_http_dav_delete_file;
965 tree.pre_tree_handler = ngx_http_dav_noop; 957 tree.pre_tree_handler = ngx_http_dav_noop;
966 tree.post_tree_handler = ngx_http_dav_delete_dir; 958 tree.post_tree_handler = ngx_http_dav_delete_dir;
967 tree.spec_handler = ngx_http_dav_delete_file; 959 tree.spec_handler = ngx_http_dav_delete_file;
968 tree.data = NULL; 960 tree.data = NULL;