aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_posix.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-06-13 20:13:09 +0200
committerKim Alvefur <zash@zash.se>2017-06-13 20:13:09 +0200
commit14f5606da9c3d220ecea41c0ed6563fe4b287677 (patch)
treefa2a0b0faa41779bed397f47f5dd4df31a132276 /plugins/mod_posix.lua
parent547eeb1267f72301e8db308fc28ef0489220d797 (diff)
downloadprosody-14f5606da9c3d220ecea41c0ed6563fe4b287677.tar.gz
prosody-14f5606da9c3d220ecea41c0ed6563fe4b287677.zip
mod_posix: Ignore currently unused argument [luacheck]
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 9c1dff3d..32fc27bc 100644
--- a/plugins/mod_posix.lua
+++ b/plugins/mod_posix.lua
@@ -113,7 +113,7 @@ local function write_pidfile()
end
local syslog_opened;
-function syslog_sink_maker(config)
+function syslog_sink_maker(config) -- luacheck: ignore 212/config
if not syslog_opened then
pposix.syslog_open("prosody", module:get_option_string("syslog_facility"));
syslog_opened = true;