diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-13 20:28:53 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-13 20:28:53 +0000 |
commit | ebb5967a19ee6abdd70a965ff8ca127df47f136f (patch) | |
tree | 4b83ace97e2b2d855be8474612014d9af787215e /src/send.c | |
parent | e13f9deabc82ad42abb8adf1ab8d416a764aeafc (diff) |
- changed match() polarity. match() now returns 0 on match and 1 on non-match
This cleans up several places where function pointers of different matching
functions like irccmp/strcmp/match are passed to other functions.
- added improved collapse() to match.c
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1652 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src/send.c')
-rw-r--r-- | src/send.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -707,9 +707,9 @@ static int match_it(const struct Client *one, const char *mask, int what) { if (what == MATCH_HOST) - return match(mask, one->host); + return !match(mask, one->host); - return match(mask, one->servptr->name); + return !match(mask, one->servptr->name); } /* sendto_match_butone() @@ -820,7 +820,7 @@ sendto_match_servs(struct Client *source_p, const char *mask, int cap, if (target_p->from->localClient->serial == current_serial) continue; - if (match(mask, target_p->name)) + if (!match(mask, target_p->name)) { /* * if we set the serial here, then we'll never do a |