mod_muc_ban_ip: Cleanup [luacheck]
authorKim Alvefur <zash@zash.se>
Tue, 07 Apr 2015 17:35:05 +0200
changeset 1655 933403ee07ec
parent 1654 66d67f0bae16
child 1656 9a3d2f1479a4
mod_muc_ban_ip: Cleanup [luacheck]
mod_muc_ban_ip/mod_muc_ban_ip.lua
--- a/mod_muc_ban_ip/mod_muc_ban_ip.lua	Tue Apr 07 17:34:43 2015 +0200
+++ b/mod_muc_ban_ip/mod_muc_ban_ip.lua	Tue Apr 07 17:35:05 2015 +0200
@@ -22,7 +22,7 @@
 	module:log("debug", "Banned IP address %s from %s", ip, from);
 end
 
-function check_for_incoming_ban(event)
+local function check_for_incoming_ban(event)
 	local stanza = event.stanza;
 	local to_session = full_sessions[stanza.attr.to];
 	if to_session then
@@ -42,7 +42,7 @@
 	end
 end
 
-function check_for_ban(event)
+local function check_for_ban(event)
 	local ip = event.origin.ip;
 	local to = jid_bare(event.stanza.attr.to);
 	if ip_bans[ip] and ip_bans[ip][to] then