707 |
|
match_it(const struct Client *one, const char *mask, int what) |
708 |
|
{ |
709 |
|
if (what == MATCH_HOST) |
710 |
< |
return match(mask, one->host); |
710 |
> |
return !match(mask, one->host); |
711 |
|
|
712 |
< |
return match(mask, one->servptr->name); |
712 |
> |
return !match(mask, one->servptr->name); |
713 |
|
} |
714 |
|
|
715 |
|
/* sendto_match_butone() |
820 |
|
if (target_p->from->localClient->serial == current_serial) |
821 |
|
continue; |
822 |
|
|
823 |
< |
if (match(mask, target_p->name)) |
823 |
> |
if (!match(mask, target_p->name)) |
824 |
|
{ |
825 |
|
/* |
826 |
|
* if we set the serial here, then we'll never do a |