1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

luaL_reg was already deprecated in Lua 5.1.4.

It is gone in Lua 5.2.0 and was replaced by luaL_Reg
which already existed in 5.1.4. So use that one..


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1239029 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rainer Jung
2012-02-01 09:50:14 +00:00
parent 11ffbb51b5
commit d0257e2db8

View File

@@ -65,7 +65,7 @@ static int lua_table_get(lua_State *L)
return 1;
}
static const luaL_reg lua_table_methods[] = {
static const luaL_Reg lua_table_methods[] = {
{"set", lua_table_set},
{"get", lua_table_get},
{0, 0}