# HG changeset patch # User Marco Cirillo # Date 1347487557 0 # Node ID bf23a8966e20f8408a368347b383265f1a518a20 # Parent f826b5935175d32bc9058653361204a7da39648d mod_host_guard: fix typos into the code, the operators were supposed to be "not equal". diff -r f826b5935175 -r bf23a8966e20 mod_host_guard/mod_host_guard.lua --- a/mod_host_guard/mod_host_guard.lua Wed Sep 12 20:08:48 2012 +0000 +++ b/mod_host_guard/mod_host_guard.lua Wed Sep 12 22:05:57 2012 +0000 @@ -42,7 +42,7 @@ local function handle_activation (host, u) if guard_blockall:contains(host) or guard_protect:contains(host) then - if hosts[host] and config.get(host, "core", "authentication") == "anonymous" then + if hosts[host] and config.get(host, "core", "authentication") ~= "anonymous" then hosts[host].events.add_handler("s2sin-established", s2s_hook, 500) hosts[host].events.add_handler("route/remote", rr_hook, 500) hosts[host].events.add_handler("stanza/jabber:server:dialback:result", s2s_hook, 500) @@ -57,7 +57,7 @@ local function handle_deactivation (host, u, i) if guard_blockall:contains(host) or guard_protect:contains(host) then - if hosts[host] and config.get(host, "core", "authentication") == "anonymous" then + if hosts[host] and config.get(host, "core", "authentication") ~= "anonymous" then hosts[host].events.remove_handler("s2sin-established", s2s_hook) hosts[host].events.remove_handler("route/remote", rr_hook) hosts[host].events.remove_handler("stanza/jabber:server:dialback:result", s2s_hook)