diff options
author | Kim Alvefur <zash@zash.se> | 2016-11-20 11:51:13 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-11-20 11:51:13 +0100 |
commit | 18f15461dea778dfe006329ff520a2b7bf5dae2f (patch) | |
tree | be558a6057feb9dcf56a66a8674e99b0ec8c533b | |
parent | 46f818c15077791d1770e30460918ed68a4e4155 (diff) | |
download | prosody-18f15461dea778dfe006329ff520a2b7bf5dae2f.tar.gz prosody-18f15461dea778dfe006329ff520a2b7bf5dae2f.zip |
mod_posix: Use type-specific config API
-rw-r--r-- | plugins/mod_posix.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua index 7e6d8799..0a6845ac 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. |