From 162e8906a63ca2413b16bdb0556abc59fb66032c Mon Sep 17 00:00:00 2001 From: bol-van Date: Fri, 6 Feb 2026 15:53:50 +0300 Subject: [PATCH] nfqws2: use mktime instead of timelocal --- nfq2/lua.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nfq2/lua.c b/nfq2/lua.c index 3ff3d52..74acd57 100644 --- a/nfq2/lua.c +++ b/nfq2/lua.c @@ -3687,7 +3687,7 @@ static int luacall_timelocal(lua_State *L) { // timelocal(tm) lua_check_argc(L,"timelocal",1); - lua_timex(L, timelocal); + lua_timex(L, mktime); return 1; } static int luacall_timegm(lua_State *L)