mod_posix, mod_bosh, mod_admin_telnet: Use module:set_global()

This commit is contained in:
Kim Alvefur 2012-03-15 14:47:46 +01:00
parent f8822a2c63
commit 3c2e464d58
3 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ local stat = lfs.attributes;
local prosody = _G.prosody;
module.host = "*"; -- we're a global module
module:set_global(); -- we're a global module
local umask = module:get_option("umask") or "027";
pposix.umask(umask);