Changeset

8167:39188851811c

mod_posix: Ignore currently unused argument [luacheck]
author Kim Alvefur <zash@zash.se>
date Tue, 13 Jun 2017 20:13:09 +0200
parents 8166:bbedf564b9f9
children 8168:45be94611593 8171:746d73347937
files plugins/mod_posix.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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;