diff -r 28433f06d5ee -r afd57ce39ec9 src/server/daemon/ws-fn.c --- a/src/server/daemon/ws-fn.c Mon Jul 01 18:05:13 2013 +0200 +++ b/src/server/daemon/ws-fn.c Mon Jul 08 11:10:54 2013 +0200 @@ -41,27 +41,27 @@ #include "../admin/admin.h" struct FuncStruct webserver_funcs[] = { - { "init-test", init_test, NULL, 0 }, - { "load-modules", load_modules, NULL, 0}, - { "test-nametrans", test_nametrans, NULL, 0 }, - { "assign-name", assign_name, NULL, 0}, - { "type-by-extension", object_type_by_extension, NULL, 0}, - { "send-file", send_file, NULL, 0}, - { "common-index", service_index, NULL, 0}, - { "service-hello", service_hello, NULL, 0}, - { "send-options", send_options, NULL, 0}, - { "webdav-init", webdav_init, NULL, 0}, - { "webdav-setcollection", webdav_setcollection, NULL, 0}, - { "webdav-service", webdav_service, NULL, 0}, - { "admin-init", admin_init, NULL, 0}, - { "admin-service", admin_service, NULL, 0}, - { "auth-basic", auth_basic, NULL, 0 }, - { "auth-db", auth_db, NULL, 0 }, - { "require-auth", require_auth, NULL, 0}, - { "require-access", require_access, NULL, 0}, - { "append-acl", append_acl, NULL, 0}, - { "check-acl", check_acl, NULL, 0}, - { "print-message", print_message, NULL, 0}, - { "common-log", common_log, NULL, 0}, - {NULL, NULL, NULL, 0} + { "init-test", init_test, NULL, NULL, 0 }, + { "load-modules", load_modules, NULL, NULL, 0}, + { "test-nametrans", test_nametrans, NULL, NULL, 0 }, + { "assign-name", assign_name, NULL, NULL, 0}, + { "type-by-extension", object_type_by_extension, NULL, NULL, 0}, + { "send-file", send_file, NULL, NULL, 0}, + { "common-index", service_index, NULL, NULL, 0}, + { "service-hello", service_hello, NULL, NULL, 0}, + { "send-options", send_options, NULL, NULL, 0}, + { "webdav-init", webdav_init, NULL, NULL, 0}, + { "webdav-setcollection", webdav_setcollection, NULL, NULL, 0}, + { "webdav-service", webdav_service, NULL, NULL, 0}, + { "admin-init", admin_init, NULL, NULL, 0}, + { "admin-service", admin_service, NULL, NULL, 0}, + { "auth-basic", auth_basic, NULL, NULL, 0 }, + { "auth-db", auth_db, NULL, NULL, 0 }, + { "require-auth", require_auth, NULL, NULL, 0}, + { "require-access", require_access, NULL, NULL, 0}, + { "append-acl", append_acl, NULL, NULL, 0}, + { "check-acl", check_acl, NULL, NULL, 0}, + { "print-message", print_message, NULL, NULL, 0}, + { "common-log", common_log, NULL, NULL, 0}, + {NULL, NULL, NULL, NULL, 0} };