mod_muc_ban_ip/mod_muc_ban_ip.lua
changeset 1655 933403ee07ec
parent 1651 8860405e2af6
child 3407 823027110e29
--- 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