aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_posix.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-11-21 02:40:47 +0100
committerKim Alvefur <zash@zash.se>2016-11-21 02:40:47 +0100
commit5759ed4bd315c197324c65375be019040d273203 (patch)
tree62ffc114d6f84139c60043dba1936d9606f9b6ba /plugins/mod_posix.lua
parentfa06e78161ae895c625f78ed745766d4569d6876 (diff)
parentf36fed39e8110ee3c36e0587811ce3268ae6690e (diff)
downloadprosody-5759ed4bd315c197324c65375be019040d273203.tar.gz
prosody-5759ed4bd315c197324c65375be019040d273203.zip
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_posix.lua')
-rw-r--r--plugins/mod_posix.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua
index 7333fe47..122f550a 100644
--- a/plugins/mod_posix.lua
+++ b/plugins/mod_posix.lua
@@ -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.