mod_posix: Use type-specific config API

This commit is contained in:
Kim Alvefur 2016-11-20 11:51:13 +01:00
parent 82da87e629
commit fdf2a552ce

View file

@ -26,7 +26,7 @@ local prosody = _G.prosody;
module:set_global(); -- we're a global module
local umask = module:get_option("umask") or "027";
local umask = module:get_option_string("umask", "027");
pposix.umask(umask);
-- Allow switching away from root, some people like strange ports.