Diff

plugins/mod_posix.lua @ 8167:39188851811c

mod_posix: Ignore currently unused argument [luacheck]
author Kim Alvefur <zash@zash.se>
date Tue, 13 Jun 2017 20:13:09 +0200
parent 8166:bbedf564b9f9
child 8168:45be94611593
child 8226:3463d82276de
line wrap: on
line diff
--- 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;