diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-05-03 17:19:20 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-05-03 17:19:20 +0000 |
commit | 54b34ccbc5a41e7bdbf29271dcc380715418f8c1 (patch) | |
tree | c764006195d2181e43fd9461543327e70523740e /package/uhttpd/src/uhttpd.c | |
parent | bcd8d530d10127ce0be796fe7ef42944c47d4485 (diff) | |
download | upstream-54b34ccbc5a41e7bdbf29271dcc380715418f8c1.tar.gz upstream-54b34ccbc5a41e7bdbf29271dcc380715418f8c1.tar.bz2 upstream-54b34ccbc5a41e7bdbf29271dcc380715418f8c1.zip |
uhttpd: added uhttpd.docroot
Passes the document-root to the Lua handler by placing it in uhttpd.docroot.
It could alternatively be placed in env.DOCUMENT_ROOT which would more closely
resemble the CGI protocol; but would mean that it is not available at the time
when the handler-chunk is loaded but rather not until the handler is called,
without any code savings.
Signed-off-by: David Favro <openwrt@meta-dynamic.com>
SVN-Revision: 31571
Diffstat (limited to 'package/uhttpd/src/uhttpd.c')
-rw-r--r-- | package/uhttpd/src/uhttpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/uhttpd/src/uhttpd.c b/package/uhttpd/src/uhttpd.c index 5d66e23a50..78e0b5d952 100644 --- a/package/uhttpd/src/uhttpd.c +++ b/package/uhttpd/src/uhttpd.c @@ -1089,7 +1089,7 @@ int main (int argc, char **argv) if( ! conf.lua_prefix ) conf.lua_prefix = "/lua"; - conf.lua_state = conf.lua_init(conf.lua_handler); + conf.lua_state = conf.lua_init(&conf); } } #endif |