comparison src/http/modules/ngx_http_dav_module.c @ 1749:b87ce8dcba37

fix comment
author Igor Sysoev <igor@sysoev.ru>
date Tue, 18 Dec 2007 15:12:33 +0000
parents f4eb04fd8579
children a35bc4007ec3
comparison
equal deleted inserted replaced
1748:91d381e4e691 1749:b87ce8dcba37
967 tree.spec_handler = ngx_http_dav_delete_file; 967 tree.spec_handler = ngx_http_dav_delete_file;
968 tree.data = NULL; 968 tree.data = NULL;
969 tree.alloc = 0; 969 tree.alloc = 0;
970 tree.log = r->connection->log; 970 tree.log = r->connection->log;
971 971
972 /* todo: 207 */ 972 /* TODO: 207 */
973 973
974 if (ngx_walk_tree(&tree, path) != NGX_OK) { 974 if (ngx_walk_tree(&tree, path) != NGX_OK) {
975 return NGX_HTTP_INTERNAL_SERVER_ERROR; 975 return NGX_HTTP_INTERNAL_SERVER_ERROR;
976 } 976 }
977 977