From c8e0c28c15677d010fc4cf11b53e36ba91fa4d96 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Fri, 18 Oct 2013 11:42:43 +0000 Subject: iwinfo: make 'type' visible in wrapped iwinfo There are several cases within 'luci' that attempt to access the interface 'type' from within the 'type' specific meta tables; however, 'type' is not currently available there. Replicate the common metadata in the 'type' specific meta tables. Signed-off-by: Nathan Hintz SVN-Revision: 38448 --- package/network/utils/iwinfo/src/iwinfo_lua.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'package/network/utils/iwinfo/src') diff --git a/package/network/utils/iwinfo/src/iwinfo_lua.c b/package/network/utils/iwinfo/src/iwinfo_lua.c index fc4fd4a..3f1f206 100644 --- a/package/network/utils/iwinfo/src/iwinfo_lua.c +++ b/package/network/utils/iwinfo/src/iwinfo_lua.c @@ -862,6 +862,7 @@ LUALIB_API int luaopen_iwinfo(lua_State *L) { #ifdef USE_WL luaL_newmetatable(L, IWINFO_WL_META); + luaL_register(L, NULL, R_common); luaL_register(L, NULL, R_wl); lua_pushvalue(L, -1); lua_setfield(L, -2, "__index"); @@ -870,6 +871,7 @@ LUALIB_API int luaopen_iwinfo(lua_State *L) { #ifdef USE_MADWIFI luaL_newmetatable(L, IWINFO_MADWIFI_META); + luaL_register(L, NULL, R_common); luaL_register(L, NULL, R_madwifi); lua_pushvalue(L, -1); lua_setfield(L, -2, "__index"); @@ -878,6 +880,7 @@ LUALIB_API int luaopen_iwinfo(lua_State *L) { #ifdef USE_NL80211 luaL_newmetatable(L, IWINFO_NL80211_META); + luaL_register(L, NULL, R_common); luaL_register(L, NULL, R_nl80211); lua_pushvalue(L, -1); lua_setfield(L, -2, "__index"); @@ -885,6 +888,7 @@ LUALIB_API int luaopen_iwinfo(lua_State *L) { #endif luaL_newmetatable(L, IWINFO_WEXT_META); + luaL_register(L, NULL, R_common); luaL_register(L, NULL, R_wext); lua_pushvalue(L, -1); lua_setfield(L, -2, "__index"); -- cgit v1.1