# HG changeset patch # User Kim Alvefur # Date 1497377589 -7200 # Node ID 39188851811ce033cd3a18944757f9f54e42192e # Parent bbedf564b9f9cc9a699bc57098bcef27c7dc3f36 mod_posix: Ignore currently unused argument [luacheck] diff -r bbedf564b9f9 -r 39188851811c plugins/mod_posix.lua --- a/plugins/mod_posix.lua Tue Jun 13 20:10:40 2017 +0200 +++ b/plugins/mod_posix.lua Tue Jun 13 20:13:09 2017 +0200 @@ -113,7 +113,7 @@ 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;