diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2017-03-27 15:10:26 +0300 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2017-03-27 15:10:26 +0300 |
commit | b72efa378b32980f2114bcb8081fafbd93096aa0 (patch) | |
tree | 597465be72e3fbe135055cabdeac99434e6c28c4 /accel-pppd/ctrl/ipoe/lua.c | |
parent | a2414d3742d22947ce50babb6b2d4a7ce3b36621 (diff) | |
download | accel-ppp-b72efa378b32980f2114bcb8081fafbd93096aa0.tar.gz accel-ppp-b72efa378b32980f2114bcb8081fafbd93096aa0.zip |
ipoe: fix lua 5.3 support
Diffstat (limited to 'accel-pppd/ctrl/ipoe/lua.c')
-rw-r--r-- | accel-pppd/ctrl/ipoe/lua.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pppd/ctrl/ipoe/lua.c b/accel-pppd/ctrl/ipoe/lua.c index f0785066..da3594b3 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}, |