From c72c48432e85ff6a905a3f23795abb858d107b25 Mon Sep 17 00:00:00 2001 From: bol-van Date: Tue, 3 Feb 2026 17:08:45 +0300 Subject: [PATCH] nfqws2: fix icmp data32 --- nfq2/lua.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nfq2/lua.c b/nfq2/lua.c index dfbe488..f087192 100644 --- a/nfq2/lua.c +++ b/nfq2/lua.c @@ -1415,7 +1415,7 @@ void lua_push_icmphdr(lua_State *L, const struct icmp46 *icmp, size_t len) lua_pushf_int(L,"icmp_type",icmp->icmp_type); lua_pushf_int(L,"icmp_code",icmp->icmp_code); lua_pushf_int(L,"icmp_cksum",ntohs(icmp->icmp_cksum)); - lua_pushf_int(L,"icmp_data",ntohl(icmp->icmp_data32)); + lua_pushf_lint(L,"icmp_data",ntohl(icmp->icmp_data32)); } else lua_pushnil(L);