# HG changeset patch # User Kim Alvefur # Date 1428420905 -7200 # Node ID 933403ee07ec651b6ae5845b5314ba54afaa9650 # Parent 66d67f0bae165e032903bc5faa5996a65e7e31b9 mod_muc_ban_ip: Cleanup [luacheck] diff -r 66d67f0bae16 -r 933403ee07ec 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