handle mod_secdownload similar to mod_alias: create the physical path yourself

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@705 152afb58-edef-0310-8abb-c4023f1b3aa9
svn/tags/lighttpd-1.4.6
Jan Kneschke 2005-09-14 12:47:47 +00:00
parent 88c96e46a0
commit 9d93d78b8e
1 changed files with 6 additions and 4 deletions

View File

@ -281,10 +281,12 @@ URIHANDLER_FUNC(mod_secdownload_uri_handler) {
/* starting with the last / we should have relative-path to the docroot
*/
buffer_copy_string_buffer(con->physical.path, p->conf.doc_root);
buffer_append_string(con->physical.path, rel_uri);
buffer_copy_string_buffer(con->physical.doc_root, p->conf.doc_root);
buffer_copy_string(con->physical.rel_path, rel_uri);
buffer_copy_string_buffer(con->physical.path, con->physical.doc_root);
buffer_append_string_buffer(con->physical.path, con->physical.rel_path);
return HANDLER_COMEBACK;
return HANDLER_GO_ON;
}
/* this function is called at dlopen() time and inits the callbacks */
@ -294,7 +296,7 @@ int mod_secdownload_plugin_init(plugin *p) {
p->name = buffer_init_string("secdownload");
p->init = mod_secdownload_init;
p->handle_uri_clean = mod_secdownload_uri_handler;
p->handle_physical = mod_secdownload_uri_handler;
p->set_defaults = mod_secdownload_set_defaults;
p->cleanup = mod_secdownload_free;