diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2017-03-29 13:44:55 +0300 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2017-03-29 13:44:55 +0300 |
commit | a8e6a986e08f97584a928aa0aa57830acaf3619a (patch) | |
tree | c70104ad29bc12d399d3d693a2b4aa7130ddfc25 /accel-pppd | |
parent | b335be86bde20fab93e32cdd512162c43009d584 (diff) | |
download | accel-ppp-a8e6a986e08f97584a928aa0aa57830acaf3619a.tar.gz accel-ppp-a8e6a986e08f97584a928aa0aa57830acaf3619a.zip |
Revert "ipoe: fix lua 5.3 support"
This reverts commit 5159276962e4305db249bbbf5eb589ec59b9e318.
Diffstat (limited to 'accel-pppd')
-rw-r--r-- | accel-pppd/ctrl/ipoe/lua.c | 2 | ||||
-rw-r--r-- | accel-pppd/ctrl/ipoe/lua_lpack.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/accel-pppd/ctrl/ipoe/lua.c b/accel-pppd/ctrl/ipoe/lua.c index da3594b3..f0785066 100644 --- a/accel-pppd/ctrl/ipoe/lua.c +++ b/accel-pppd/ctrl/ipoe/lua.c @@ -36,7 +36,7 @@ static int packet4_vlan(lua_State *L); int luaopen_lpack(lua_State *L); -static const struct luaL_Reg packet4_lib [] = { +static const struct luaL_reg packet4_lib [] = { {"hdr", packet4_hdr}, {"ifname", packet4_ifname}, {"option", packet4_option}, diff --git a/accel-pppd/ctrl/ipoe/lua_lpack.c b/accel-pppd/ctrl/ipoe/lua_lpack.c index 74e7384f..feb0a5a8 100644 --- a/accel-pppd/ctrl/ipoe/lua_lpack.c +++ b/accel-pppd/ctrl/ipoe/lua_lpack.c @@ -252,7 +252,7 @@ static int l_pack(lua_State *L) /** pack(f,...) */ return 1; } -static const luaL_Reg R[] = +static const luaL_reg R[] = { {"pack", l_pack}, {"unpack", l_unpack}, |