Commit 188e95f3 authored by Rainer Jung's avatar Rainer Jung
Browse files

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
parent 67db486a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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}