diff options
author | Richard Ipsum <richardipsum@vx21.xyz> | 2019-09-21 18:39:08 +0100 |
---|---|---|
committer | Daniel Silverstone <dsilvers@digital-scurf.org> | 2019-09-23 05:55:07 +0100 |
commit | 3ac26da52801101180070ce1392cbd40c3e7954e (patch) | |
tree | 10b88daa849f6c259768bd72a66265e0f12e7a98 /luxio.c | |
parent | 32e9b6c5b18f78731a1b49363093e0f648b29955 (diff) | |
download | luxio-3ac26da52801101180070ce1392cbd40c3e7954e.tar.bz2 |
Fix build on FreeBSD
Diffstat (limited to 'luxio.c')
-rw-r--r-- | luxio.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -672,11 +672,13 @@ static void luxio__sigaction_hook(lua_State *L, lua_Debug *ar) lua_pushinteger(L, info->si_uid); lua_setfield(L, -2, "si_uid"); +#ifndef __FreeBSD__ lua_pushinteger(L, info->si_utime); lua_setfield(L, -2, "si_utime"); lua_pushinteger(L, info->si_stime); lua_setfield(L, -2, "si_stime"); +#endif lua_pushinteger(L, (lua_Integer) info->si_addr); lua_setfield(L, -2, "si_addr"); |