XLINE: Do not cluster unxlines ON specific servers.

This bug was introduced with BAN support for XLINE.
This commit is contained in:
Jilles Tjoelker 2010-03-27 16:09:26 +01:00
parent 5d2661a149
commit d0cf872a95
1 changed files with 2 additions and 2 deletions

View File

@ -523,7 +523,7 @@ remove_xline(struct Client *source_p, const char *name, int propagated)
deactivate_conf(aconf, ptr);
return;
}
else if(MyClient(source_p) && rb_dlink_list_length(&cluster_conf_list))
else if(propagated && rb_dlink_list_length(&cluster_conf_list))
cluster_generic(source_p, "UNXLINE", SHARED_UNXLINE, CAP_CLUSTER, "%s", name);
if(!aconf->hold)
{
@ -551,7 +551,7 @@ remove_xline(struct Client *source_p, const char *name, int propagated)
}
}
if(MyClient(source_p) && rb_dlink_list_length(&cluster_conf_list))
if(propagated && rb_dlink_list_length(&cluster_conf_list))
cluster_generic(source_p, "UNXLINE", SHARED_UNXLINE, CAP_CLUSTER, "%s", name);
sendto_one_notice(source_p, ":No X-Line for %s", name);