From: Kim Alvefur Date: Wed, 25 Nov 2015 19:43:29 +0000 (+0100) Subject: util.pposix: Expose the uname GNU extension field 'domainname' X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=8ff82450cd263a73b57dbd71177334dad10249f9;p=prosody.git util.pposix: Expose the uname GNU extension field 'domainname' --- diff --git a/util-src/pposix.c b/util-src/pposix.c index 02ea0087..1b69852d 100644 --- a/util-src/pposix.c +++ b/util-src/pposix.c @@ -642,6 +642,10 @@ int lc_uname(lua_State* L) { lua_setfield(L, -2, "version"); lua_pushstring(L, uname_info.machine); lua_setfield(L, -2, "machine"); +#ifdef _GNU_SOURCE + lua_pushstring(L, uname_info.domainname); + lua_setfield(L, -2, "domainname"); +#endif return 1; }