summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjan <jan@152afb58-edef-0310-8abb-c4023f1b3aa9>2006-09-21 13:31:55 +0000
committerjan <jan@152afb58-edef-0310-8abb-c4023f1b3aa9>2006-09-21 13:31:55 +0000
commitba6412b1e75efb1ae546e3d03d5ec55ee09eccd8 (patch)
treef71ddd62538a50915b6b56fcf5610921dfa7b987
parent0d9c3a2e903c4fd3af761df2ec379bfa9d9441bf (diff)
downloadlighttpd-ba6412b1e75efb1ae546e3d03d5ec55ee09eccd8.tar.gz
removed duplicate lua-load calls which crash lua 5.0
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.11-ssl-fixes@1329 152afb58-edef-0310-8abb-c4023f1b3aa9
-rw-r--r--src/mod_cml_lua.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mod_cml_lua.c b/src/mod_cml_lua.c
index 13aab556..ded53b80 100644
--- a/src/mod_cml_lua.c
+++ b/src/mod_cml_lua.c
@@ -224,12 +224,6 @@ int cache_parse_lua(server *srv, connection *con, plugin_data *p, buffer *fn) {
L = luaL_newstate();
luaL_openlibs(L);
- luaopen_base(L);
- luaopen_table(L);
- luaopen_string(L);
- luaopen_math(L);
- luaopen_io(L);
-
/* register functions */
lua_register(L, "md5", f_crypto_md5);
lua_register(L, "file_mtime", f_file_mtime);