diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/actions.c | 2 | ||||
-rw-r--r-- | src/channels.c | 6 | ||||
-rw-r--r-- | src/chanserv.c | 6 | ||||
-rw-r--r-- | src/core/bs_badwords.c | 2 | ||||
-rw-r--r-- | src/core/cs_access.c | 2 | ||||
-rw-r--r-- | src/core/cs_akick.c | 10 | ||||
-rw-r--r-- | src/core/cs_list.c | 4 | ||||
-rw-r--r-- | src/core/cs_xop.c | 2 | ||||
-rw-r--r-- | src/core/hs_list.c | 2 | ||||
-rw-r--r-- | src/core/ns_access.c | 4 | ||||
-rw-r--r-- | src/core/ns_list.c | 4 | ||||
-rw-r--r-- | src/core/os_admin.c | 2 | ||||
-rw-r--r-- | src/core/os_akill.c | 4 | ||||
-rw-r--r-- | src/core/os_chanlist.c | 2 | ||||
-rw-r--r-- | src/core/os_noop.c | 2 | ||||
-rw-r--r-- | src/core/os_oper.c | 2 | ||||
-rw-r--r-- | src/core/os_session.c | 4 | ||||
-rw-r--r-- | src/core/os_sgline.c | 4 | ||||
-rw-r--r-- | src/core/os_sqline.c | 4 | ||||
-rw-r--r-- | src/core/os_szline.c | 4 | ||||
-rw-r--r-- | src/core/os_userlist.c | 2 | ||||
-rw-r--r-- | src/misc.c | 29 | ||||
-rw-r--r-- | src/nickserv.c | 4 | ||||
-rw-r--r-- | src/operserv.c | 40 | ||||
-rw-r--r-- | src/process.c | 2 | ||||
-rw-r--r-- | src/sessions.c | 6 | ||||
-rw-r--r-- | src/users.c | 14 |
27 files changed, 70 insertions, 99 deletions
diff --git a/src/actions.c b/src/actions.c index 6b96c66fa..4f2d047d2 100644 --- a/src/actions.c +++ b/src/actions.c @@ -95,7 +95,7 @@ void sqline(char *mask, char *reason) for (c = chanlist[i]; c; c = next) { next = c->next; - if (!match_wild_nocase(mask, c->name)) { + if (!Anope::Match(c->name, mask, false)) { continue; } for (cu = c->users; cu; cu = cunext) { diff --git a/src/channels.c b/src/channels.c index abbb747b7..f28059250 100644 --- a/src/channels.c +++ b/src/channels.c @@ -2156,13 +2156,13 @@ int entry_match(Entry * e, const char *nick, const char *user, const char *host, && (!user || stricmp(e->host, host) != 0)) return 0; if ((e->type & ENTRYTYPE_NICK_WILD) - && !match_wild_nocase(e->nick, nick)) + && !Anope::Match(nick, e->nick, false)) return 0; if ((e->type & ENTRYTYPE_USER_WILD) - && !match_wild_nocase(e->user, user)) + && !Anope::Match(user, e->user, false)) return 0; if ((e->type & ENTRYTYPE_HOST_WILD) - && !match_wild_nocase(e->host, host)) + && !Anope::Match(host, e->host, false)) return 0; return 1; diff --git a/src/chanserv.c b/src/chanserv.c index 393a5831b..b8442051a 100644 --- a/src/chanserv.c +++ b/src/chanserv.c @@ -2202,11 +2202,11 @@ AutoKick *is_stuck(ChannelInfo * ci, const char *mask) || !(akick->flags & AK_STUCK)) continue; /* Example: mask = *!*@*.org and akick->u.mask = *!*@*.anope.org */ - if (match_wild_nocase(mask, akick->u.mask)) + if (Anope::Match(akick->u.mask, mask, false)) return akick; if (ircd->reversekickcheck) { /* Example: mask = *!*@irc.anope.org and akick->u.mask = *!*@*.anope.org */ - if (match_wild_nocase(akick->u.mask, mask)) + if (Anope::Match(mask, akick->u.mask, false)) return akick; } } @@ -2240,7 +2240,7 @@ void stick_mask(ChannelInfo * ci, AutoKick * akick) if (ircd->reversekickcheck) { /* If akick is wider than a ban already in place. Example: c->bans[i] = *!*@irc.epona.org and akick->u.mask = *!*@*.epona.org */ - if (match_wild_nocase(akick->u.mask, ban->mask)) + if (Anope::Match(ban->mask, akick->u.mask, false)) return; } } diff --git a/src/core/bs_badwords.c b/src/core/bs_badwords.c index 5c6c77199..0878c42a2 100644 --- a/src/core/bs_badwords.c +++ b/src/core/bs_badwords.c @@ -44,7 +44,7 @@ class CommandBSBadwords : public Command if (!(ci->badwords[i].in_use)) continue; if (word && ci->badwords[i].word - && !match_wild_nocase(word, ci->badwords[i].word)) + && !Anope::Match(ci->badwords[i].word, word, false)) continue; badwords_list(u, i, ci, &sent_header); } diff --git a/src/core/cs_access.c b/src/core/cs_access.c index ec58b75ea..d921be7b5 100644 --- a/src/core/cs_access.c +++ b/src/core/cs_access.c @@ -335,7 +335,7 @@ class CommandCSAccess : public Command } else { for (i = 0; i < ci->accesscount; i++) { if (nick && ci->access[i].nc - && !match_wild_nocase(nick, ci->access[i].nc->display)) + && !Anope::Match(ci->access[i].nc->display, nick, false)) continue; access_list(u, i, ci, &sent_header); } diff --git a/src/core/cs_akick.c b/src/core/cs_akick.c index a0efdc067..50a0d8257 100644 --- a/src/core/cs_akick.c +++ b/src/core/cs_akick.c @@ -264,7 +264,7 @@ class CommandCSAKick : public Command if (na2->nc && ((na2->nc == ci->founder) || (get_access_nc(na2->nc, ci) >= get_access(u, ci)))) { snprintf(buf, BUFSIZE, "%s!%s", na2->nick, na2->last_usermask); - if (match_wild_nocase(mask, buf)) { + if (Anope::Match(buf, mask, false)) { notice_lang(s_ChanServ, u, PERMISSION_DENIED); delete [] mask; return MOD_CONT; @@ -536,10 +536,10 @@ class CommandCSAKick : public Command continue; if (mask) { if (!(akick->flags & AK_ISNICK) - && !match_wild_nocase(mask, akick->u.mask)) + && !Anope::Match(akick->u.mask, mask, false)) continue; if ((akick->flags & AK_ISNICK) - && !match_wild_nocase(mask, akick->u.nc->display)) + && !Anope::Match(akick->u.nc->display, mask, false)) continue; } akick_list(u, i, ci, &sent_header); @@ -565,10 +565,10 @@ class CommandCSAKick : public Command continue; if (mask) { if (!(akick->flags & AK_ISNICK) - && !match_wild_nocase(mask, akick->u.mask)) + && !Anope::Match(akick->u.mask, mask, false)) continue; if ((akick->flags & AK_ISNICK) - && !match_wild_nocase(mask, akick->u.nc->display)) + && !Anope::Match(akick->u.nc->display, mask, false)) continue; } akick_view(u, i, ci, &sent_header); diff --git a/src/core/cs_list.c b/src/core/cs_list.c index f4ccc843a..6090c662a 100644 --- a/src/core/cs_list.c +++ b/src/core/cs_list.c @@ -136,8 +136,8 @@ public: if ((stricmp(pattern, ci->name) == 0) || (stricmp(spattern, ci->name) == 0) - || match_wild_nocase(pattern, ci->name) - || match_wild_nocase(spattern, ci->name)) + || Anope::Match(ci->name, pattern, false) + || Anope::Match(ci->name, spattern, false)) { if ((((count + 1 >= from) && (count + 1 <= to)) || ((from == 0) && (to == 0))) diff --git a/src/core/cs_xop.c b/src/core/cs_xop.c index 569ea3cdc..645151bc7 100644 --- a/src/core/cs_xop.c +++ b/src/core/cs_xop.c @@ -354,7 +354,7 @@ class XOPBase : public Command { for (int i = 0; i < ci->accesscount; ++i) { - if (nick && ci->access[i].nc && !match_wild_nocase(nick, ci->access[i].nc->display)) + if (nick && ci->access[i].nc && !Anope::Match(ci->access[i].nc->display, nick, false)) continue; xop_list(u, i, ci, &sent_header, level, messages[XOP_LIST_HEADER]); } diff --git a/src/core/hs_list.c b/src/core/hs_list.c index 21ca61689..d2dc104a3 100644 --- a/src/core/hs_list.c +++ b/src/core/hs_list.c @@ -94,7 +94,7 @@ class CommandHSList : public Command { if (key) { - if ((match_wild_nocase(key, current->nick) || match_wild_nocase(key, current->vHost)) && display_counter < NSListMax) + if ((Anope::Match(current->nick, key, false) || Anope::Match(current->vHost, key, false)) && display_counter < NSListMax) { ++display_counter; tm = localtime(¤t->time); diff --git a/src/core/ns_access.c b/src/core/ns_access.c index e8e43b298..329d5110a 100644 --- a/src/core/ns_access.c +++ b/src/core/ns_access.c @@ -49,7 +49,7 @@ class CommandNSAccess : public Command notice_lang(s_NickServ, u, NICK_ACCESS_LIST_X, params[1].c_str()); for (access = nc->access, i = 0; i < nc->accesscount; ++access, ++i) { - if (mask && !match_wild(mask, *access)) + if (mask && !Anope::Match(*access, mask, true)) continue; u->SendMessage(s_NickServ, " %s", *access); } @@ -143,7 +143,7 @@ class CommandNSAccess : public Command notice_lang(s_NickServ, u, NICK_ACCESS_LIST); for (access = nc->access, i = 0; i < nc->accesscount; ++access, ++i) { - if (mask && !match_wild(mask, *access)) + if (mask && !Anope::Match(*access, mask, true)) continue; u->SendMessage(s_NickServ, " %s", *access); } diff --git a/src/core/ns_list.c b/src/core/ns_list.c index 407d1bcd1..0f06ba7a9 100644 --- a/src/core/ns_list.c +++ b/src/core/ns_list.c @@ -143,7 +143,7 @@ class CommandNSList : public Command * Instead we build a nice nick!user@host buffer to compare. * The output is then generated separately. -TheShadow */ snprintf(buf, sizeof(buf), "%s!%s", na->nick, na->last_usermask && !(na->status & NS_FORBIDDEN) ? na->last_usermask : "*@*"); - if (!stricmp(pattern, na->nick) || match_wild_nocase(pattern, buf)) + if (!stricmp(pattern, na->nick) || Anope::Match(buf, pattern, false)) { if (((count + 1 >= from && count + 1 <= to) || (!from && !to)) && ++nnicks <= NSListMax) { @@ -175,7 +175,7 @@ class CommandNSList : public Command for (nr = nrlists[i]; nr; nr = nr->next) { snprintf(buf, sizeof(buf), "%s!*@*", nr->nick); - if (!stricmp(pattern, nr->nick) || match_wild_nocase(pattern, buf)) + if (!stricmp(pattern, nr->nick) || Anope::Match(buf, pattern, false)) { if (++nnicks <= NSListMax) { diff --git a/src/core/os_admin.c b/src/core/os_admin.c index 06391e498..dc4695880 100644 --- a/src/core/os_admin.c +++ b/src/core/os_admin.c @@ -180,7 +180,7 @@ class CommandOSAdmin : public Command int i; for (i = 0; i < servadmins.count; ++i) { - if (!stricmp(nick, (static_cast<NickCore *>(servadmins.list[i]))->display) || match_wild_nocase(nick, (static_cast<NickCore *>(servadmins.list[i]))->display)) + if (!stricmp(nick, (static_cast<NickCore *>(servadmins.list[i]))->display) || Anope::Match((static_cast<NickCore *>(servadmins.list[i]))->display, nick, false)) admin_list(i + 1, static_cast<NickCore *>(servadmins.list[i]), u, &sent_header); } diff --git a/src/core/os_akill.c b/src/core/os_akill.c index 7d5947db7..19ce880b0 100644 --- a/src/core/os_akill.c +++ b/src/core/os_akill.c @@ -225,7 +225,7 @@ class CommandOSAKill : public Command for (i = 0; i < akills.count; ++i) { snprintf(amask, sizeof(amask), "%s@%s", (static_cast<Akill *>(akills.list[i]))->user, (static_cast<Akill *>(akills.list[i]))->host); - if (!stricmp(mask, amask) || match_wild_nocase(mask, amask)) + if (!stricmp(mask, amask) || Anope::Match(amask, mask, false)) akill_list(i + 1, static_cast<Akill *>(akills.list[i]), u, &sent_header); } @@ -268,7 +268,7 @@ class CommandOSAKill : public Command for (i = 0; i < akills.count; ++i) { snprintf(amask, sizeof(amask), "%s@%s", (static_cast<Akill *>(akills.list[i]))->user, (static_cast<Akill *>(akills.list[i]))->host); - if (!stricmp(mask, amask) || match_wild_nocase(mask, amask)) + if (!stricmp(mask, amask) || Anope::Match(amask, mask, false)) akill_view(i + 1, static_cast<Akill *>(akills.list[i]), u, &sent_header); } diff --git a/src/core/os_chanlist.c b/src/core/os_chanlist.c index d86beaeed..3ba0e9d18 100644 --- a/src/core/os_chanlist.c +++ b/src/core/os_chanlist.c @@ -59,7 +59,7 @@ class CommandOSChanList : public Command { for (c = chanlist[i]; c; c = c->next) { - if (pattern && !match_wild_nocase(pattern, c->name)) + if (pattern && !Anope::Match(c->name, pattern, false)) continue; if (modes && !(c->mode & modes)) continue; diff --git a/src/core/os_noop.c b/src/core/os_noop.c index cf1bdf23e..12d5ff53f 100644 --- a/src/core/os_noop.c +++ b/src/core/os_noop.c @@ -47,7 +47,7 @@ class CommandOSNOOP : public Command for (u2 = firstuser(); u2; u2 = u3) { u3 = nextuser(); - if (u2 && is_oper(u2) && u2->server->name && match_wild(server, u2->server->name)) + if (u2 && is_oper(u2) && u2->server->name && Anope::Match(u2->server->name, server, true)) kill_user(s_OperServ, u2->nick, reason); } } diff --git a/src/core/os_oper.c b/src/core/os_oper.c index 7ddceb257..c65dd77ed 100644 --- a/src/core/os_oper.c +++ b/src/core/os_oper.c @@ -187,7 +187,7 @@ class CommandOSOper : public Command for (i = 0; i < servopers.count; ++i) { - if (!stricmp(nick, (static_cast<NickCore *>(servopers.list[i]))->display) || match_wild_nocase(nick, (static_cast<NickCore *>(servopers.list[i]))->display)) + if (!stricmp(nick, (static_cast<NickCore *>(servopers.list[i]))->display) || Anope::Match((static_cast<NickCore *>(servopers.list[i]))->display, nick, false)) oper_list(i + 1, static_cast<NickCore *>(servopers.list[i]), u, &sent_header); } diff --git a/src/core/os_session.c b/src/core/os_session.c index e6577f578..e740a7059 100644 --- a/src/core/os_session.c +++ b/src/core/os_session.c @@ -382,7 +382,7 @@ class CommandOSException : public Command { for (i = 0; i < nexceptions; ++i) { - if (!mask || match_wild_nocase(mask, exceptions[i].mask)) + if (!mask || Anope::Match(exceptions[i].mask, mask, false)) exception_list(u, i, &sent_header); } } @@ -404,7 +404,7 @@ class CommandOSException : public Command { for (i = 0; i < nexceptions; ++i) { - if (!mask || match_wild_nocase(mask, exceptions[i].mask)) + if (!mask || Anope::Match(exceptions[i].mask, mask, false)) exception_view(u, i, &sent_header); } } diff --git a/src/core/os_sgline.c b/src/core/os_sgline.c index 9bea10147..637435cc7 100644 --- a/src/core/os_sgline.c +++ b/src/core/os_sgline.c @@ -222,7 +222,7 @@ class CommandOSSGLine : public Command for (i = 0; i < sglines.count; ++i) { amask = (static_cast<SXLine *>(sglines.list[i]))->mask; - if (!stricmp(mask, amask) || match_wild_nocase(mask, amask)) + if (!stricmp(mask, amask) || Anope::Match(amask, mask, false)) sgline_list(i + 1, static_cast<SXLine *>(sglines.list[i]), u, &sent_header); } @@ -265,7 +265,7 @@ class CommandOSSGLine : public Command for (i = 0; i < sglines.count; ++i) { amask = (static_cast<SXLine *>(sglines.list[i]))->mask; - if (!stricmp(mask, amask) || match_wild_nocase(mask, amask)) + if (!stricmp(mask, amask) || Anope::Match(amask, mask, false)) sgline_view(i + 1, static_cast<SXLine *>(sglines.list[i]), u, &sent_header); } diff --git a/src/core/os_sqline.c b/src/core/os_sqline.c index a1603008e..fcb0c9fe4 100644 --- a/src/core/os_sqline.c +++ b/src/core/os_sqline.c @@ -209,7 +209,7 @@ class CommandOSSQLine : public Command for (i = 0; i < sqlines.count; ++i) { amask = (static_cast<SXLine *>(sqlines.list[i]))->mask; - if (!stricmp(mask, amask) || match_wild_nocase(mask, amask)) + if (!stricmp(mask, amask) || Anope::Match(amask, mask, false)) sqline_list(i + 1, static_cast<SXLine *>(sqlines.list[i]), u, &sent_header); } @@ -252,7 +252,7 @@ class CommandOSSQLine : public Command for (i = 0; i < sqlines.count; ++i) { amask = (static_cast<SXLine *>(sqlines.list[i]))->mask; - if (!stricmp(mask, amask) || match_wild_nocase(mask, amask)) + if (!stricmp(mask, amask) || Anope::Match(amask, mask, false)) sqline_view(i + 1, static_cast<SXLine *>(sqlines.list[i]), u, &sent_header); } diff --git a/src/core/os_szline.c b/src/core/os_szline.c index 406db111f..2ab0c8d9d 100644 --- a/src/core/os_szline.c +++ b/src/core/os_szline.c @@ -210,7 +210,7 @@ class CommandOSSZLine : public Command for (i = 0; i < szlines.count; ++i) { amask = (static_cast<SXLine *>(szlines.list[i]))->mask; - if (!stricmp(mask, amask) || match_wild_nocase(mask, amask)) + if (!stricmp(mask, amask) || Anope::Match(amask, mask, false)) szline_list(i + 1, static_cast<SXLine *>(szlines.list[i]), u, &sent_header); } @@ -251,7 +251,7 @@ class CommandOSSZLine : public Command for (i = 0; i < szlines.count; ++i) { amask = (static_cast<SXLine *>(szlines.list[i]))->mask; - if (!stricmp(mask, amask) || match_wild_nocase(mask, amask)) + if (!stricmp(mask, amask) || Anope::Match(amask, mask, false)) szline_view(i + 1, static_cast<SXLine *>(szlines.list[i]), u, &sent_header); } diff --git a/src/core/os_userlist.c b/src/core/os_userlist.c index 7d85e641c..a91171ee8 100644 --- a/src/core/os_userlist.c +++ b/src/core/os_userlist.c @@ -63,7 +63,7 @@ class CommandOSUserList : public Command if (pattern) { snprintf(mask, sizeof(mask), "%s!%s@%s", u2->nick, u2->GetIdent().c_str(), u2->GetDisplayedHost().c_str()); - if (!match_wild_nocase(pattern, mask)) + if (!Anope::Match(mask, pattern, false)) continue; if (modes && !(u2->mode & modes)) continue; diff --git a/src/misc.c b/src/misc.c index 2acbb6087..ff56e6c1f 100644 --- a/src/misc.c +++ b/src/misc.c @@ -209,35 +209,6 @@ const char *merge_args(int argc, char **argv) } /*************************************************************************/ - -/** - * match_wild: Case Senstive wild card search - * @param pattern To be matched - * @param str String in which the pattern is to be matched - * @return 1 if the string matches the pattern, 0 if not. - * NOTE: Deprecated by Anope::Match(). - */ -int match_wild(const char *pattern, const char *str) -{ - return Anope::Match(str, pattern, true); -} - -/*************************************************************************/ - -/** - * match_wild: Case Insenstive wild card search - * @param pattern To be matched - * @param str String in which the pattern is to be matched - * @return 1 if the string matches the pattern, 0 if not. - * NOTE: Deprecated by Anope::Match(). - */ -int match_wild_nocase(const char *pattern, const char *str) -{ - return Anope::Match(str, pattern, false); -} - -/*************************************************************************/ - /** * Process a string containing a number/range list in the form * "n1[-n2][,n3[-n4]]...", calling a caller-specified routine for each diff --git a/src/nickserv.c b/src/nickserv.c index 73bdc2cf2..99487a447 100644 --- a/src/nickserv.c +++ b/src/nickserv.c @@ -864,8 +864,8 @@ int is_on_access(User * u, NickCore * nc) for (i = 0; i < nc->accesscount; i++) { - if (match_wild_nocase(nc->access[i], buf) - || (ircd->vhost ? match_wild_nocase(nc->access[i], buf2) : 0)) + if (Anope::Match(buf, nc->access[i], false) + || (ircd->vhost ? Anope::Match(buf2, nc->access[i], false) : 0)) { delete [] buf; if (ircd->vhost) diff --git a/src/operserv.c b/src/operserv.c index b0e0d0f0c..1ba950933 100644 --- a/src/operserv.c +++ b/src/operserv.c @@ -542,7 +542,7 @@ int add_akill(User * u, const char *mask, const char *by, const time_t expires, } } - if (match_wild_nocase(amask, mask) + if (Anope::Match(mask, amask, false) && (entry->expires >= expires || entry->expires == 0)) { if (u) notice_lang(s_OperServ, u, OPER_AKILL_ALREADY_COVERED, @@ -550,7 +550,7 @@ int add_akill(User * u, const char *mask, const char *by, const time_t expires, return -1; } - if (match_wild_nocase(mask, amask) + if (Anope::Match(amask, mask, false) && (entry->expires <= expires || expires == 0)) { slist_delete(&akills, i); deleted++; @@ -628,16 +628,16 @@ int check_akill(const char *nick, const char *username, const char *host, ak = static_cast<Akill *>(akills.list[i]); if (!ak) continue; - if (match_wild_nocase(ak->user, username) - && match_wild_nocase(ak->host, host)) { + if (Anope::Match(username, ak->user, false) + && Anope::Match(host, ak->host, false)) { ircdproto->SendAkill(ak->user, ak->host, ak->by, ak->seton, ak->expires, ak->reason); return 1; } if (ircd->vhost) { if (vhost) { - if (match_wild_nocase(ak->user, username) - && match_wild_nocase(ak->host, vhost)) { + if (Anope::Match(username, ak->user, false) + && Anope::Match(vhost, ak->host, false)) { ircdproto->SendAkill(ak->user, ak->host, ak->by, ak->seton, ak->expires, ak->reason); return 1; @@ -646,8 +646,8 @@ int check_akill(const char *nick, const char *username, const char *host, } if (ircd->nickip) { if (ip) { - if (match_wild_nocase(ak->user, username) - && match_wild_nocase(ak->host, ip)) { + if (Anope::Match(username, ak->user, false) + && Anope::Match(ip, ak->host, false)) { ircdproto->SendAkill(ak->user, ak->host, ak->by, ak->seton, ak->expires, ak->reason); return 1; @@ -766,7 +766,7 @@ int add_sgline(User * u, const char *mask, const char *by, time_t expires, } } - if (match_wild_nocase(entry->mask, mask) + if (Anope::Match(mask, entry->mask, false ) && (entry->expires >= expires || entry->expires == 0)) { if (u) notice_lang(s_OperServ, u, OPER_SGLINE_ALREADY_COVERED, @@ -774,7 +774,7 @@ int add_sgline(User * u, const char *mask, const char *by, time_t expires, return -1; } - if (match_wild_nocase(mask, entry->mask) + if (Anope::Match(entry->mask, mask, false) && (entry->expires <= expires || expires == 0)) { slist_delete(&sglines, i); deleted++; @@ -812,7 +812,7 @@ int add_sgline(User * u, const char *mask, const char *by, time_t expires, while (u2) { next = nextuser(); if (!is_oper(u2)) { - if (match_wild_nocase(entry->mask, u2->realname)) { + if (Anope::Match(u2->realname, entry->mask, false)) { kill_user(ServerName, u2->nick, buf); } } @@ -837,7 +837,7 @@ int check_sgline(const char *nick, const char *realname) if (!sx) continue; - if (match_wild_nocase(sx->mask, realname)) { + if (Anope::Match(realname, sx->mask, false)) { ircdproto->SendSGLine(sx->mask, sx->reason); /* We kill nick since s_sgline can't */ ircdproto->SendSVSKill(ServerName, nick, "G-Lined: %s", sx->reason); @@ -953,7 +953,7 @@ int add_sqline(User * u, const char *mask, const char *by, time_t expires, } } - if (match_wild_nocase(entry->mask, mask) + if (Anope::Match(mask, entry->mask, false) && (entry->expires >= expires || entry->expires == 0)) { if (u) notice_lang(s_OperServ, u, OPER_SQLINE_ALREADY_COVERED, @@ -961,7 +961,7 @@ int add_sqline(User * u, const char *mask, const char *by, time_t expires, return -1; } - if (match_wild_nocase(mask, entry->mask) + if (Anope::Match(entry->mask, mask, false) && (entry->expires <= expires || expires == 0)) { slist_delete(&sqlines, i); deleted++; @@ -999,7 +999,7 @@ int add_sqline(User * u, const char *mask, const char *by, time_t expires, while (u2) { next = nextuser(); if (!is_oper(u2)) { - if (match_wild_nocase(entry->mask, u2->nick)) { + if (Anope::Match(u2->nick, entry->mask, false)) { kill_user(ServerName, u2->nick, buf); } } @@ -1031,7 +1031,7 @@ int check_sqline(const char *nick, int nick_change) continue; } - if (match_wild_nocase(sx->mask, nick)) { + if (Anope::Match(nick, sx->mask, false)) { sqline(sx->mask, sx->reason); /* We kill nick since s_sqline can't */ snprintf(reason, sizeof(reason), "Q-Lined: %s", sx->reason); @@ -1059,7 +1059,7 @@ int check_chan_sqline(const char *chan) if (*sx->mask != '#') continue; - if (match_wild_nocase(sx->mask, chan)) { + if (Anope::Match(chan, sx->mask, false)) { sqline(sx->mask, sx->reason); return 1; } @@ -1167,14 +1167,14 @@ int add_szline(User * u, const char *mask, const char *by, time_t expires, } } - if (match_wild_nocase(entry->mask, mask)) { + if (Anope::Match(mask, entry->mask, false)) { if (u) notice_lang(s_OperServ, u, OPER_SZLINE_ALREADY_COVERED, mask, entry->mask); return -1; } - if (match_wild_nocase(mask, entry->mask)) { + if (Anope::Match(entry->mask, mask, false)) { slist_delete(&szlines, i); deleted++; } @@ -1227,7 +1227,7 @@ int check_szline(const char *nick, char *ip) continue; } - if (match_wild_nocase(sx->mask, ip)) { + if (Anope::Match(ip, sx->mask, false)) { ircdproto->SendSZLine(sx->mask, sx->reason, sx->by); return 1; } diff --git a/src/process.c b/src/process.c index 0590513e8..6730981c4 100644 --- a/src/process.c +++ b/src/process.c @@ -135,7 +135,7 @@ IgnoreData *get_ignore(const char *nick) } else snprintf(tmp, sizeof(tmp), "%s!*@*", nick); for (ign = ignore; ign; ign = ign->next) - if (match_wild_nocase(ign->mask, tmp)) + if (Anope::Match(tmp, ign->mask, false)) break; } /* Check whether the entry has timed out */ diff --git a/src/sessions.c b/src/sessions.c index ea225d888..27c973d69 100644 --- a/src/sessions.c +++ b/src/sessions.c @@ -280,7 +280,7 @@ Exception *find_host_exception(const char *host) int i; for (i = 0; i < nexceptions; i++) { - if ((match_wild_nocase(exceptions[i].mask, host))) { + if ((Anope::Match(host, exceptions[i].mask, false))) { return &exceptions[i]; } } @@ -295,9 +295,9 @@ Exception *find_hostip_exception(const char *host, const char *hostip) int i; for (i = 0; i < nexceptions; i++) { - if ((match_wild_nocase(exceptions[i].mask, host)) + if ((Anope::Match(host, exceptions[i].mask, false)) || ((ircd->nickip && hostip) - && (match_wild_nocase(exceptions[i].mask, hostip)))) { + && (Anope::Match(hostip, exceptions[i].mask, false)))) { return &exceptions[i]; } } diff --git a/src/users.c b/src/users.c index 94d8d35ed..450e8f764 100644 --- a/src/users.c +++ b/src/users.c @@ -928,14 +928,14 @@ int match_usermask(const char *mask, User * user) } if (nick) { - result = match_wild_nocase(nick, user->nick) - && match_wild_nocase(username, user->GetIdent().c_str()) - && (match_wild_nocase(host, user->host) - || match_wild_nocase(host, user->vhost)); + result = Anope::Match(user->nick, nick, false) + && Anope::Match(user->GetIdent().c_str(), username, false) + && (Anope::Match(user->host, host, false) + || Anope::Match(user->vhost, host, false)); } else { - result = match_wild_nocase(username, user->GetIdent().c_str()) - && (match_wild_nocase(host, user->host) - || match_wild_nocase(host, user->vhost)); + result = Anope::Match(user->GetIdent().c_str(), username, false) + && (Anope::Match(user->host, host, false) + || Anope::Match(user->vhost, host, false)); } delete [] mask2; |