diff options
author | Kim Alvefur <zash@zash.se> | 2017-06-13 20:13:09 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-06-13 20:13:09 +0200 |
commit | f8aad6ad60886d13f595e159fc6ad4bf2f136d5b (patch) | |
tree | fa2a0b0faa41779bed397f47f5dd4df31a132276 | |
parent | 60a5d606c61c7a552a1ac1b1b373f999b5e8b291 (diff) | |
download | prosody-f8aad6ad60886d13f595e159fc6ad4bf2f136d5b.tar.gz prosody-f8aad6ad60886d13f595e159fc6ad4bf2f136d5b.zip |
mod_posix: Ignore currently unused argument [luacheck]
-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 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; |