summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--accel-pppd/ctrl/ipoe/lua.c2
-rw-r--r--accel-pppd/ctrl/ipoe/lua_lpack.c2
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},