diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-07-19 18:58:29 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-07-19 18:58:29 +0000 |
commit | 57ddd84f076ae1ee0f5dea25542f23fec22447e9 (patch) | |
tree | ec7e5d1743cceeca277e89144ce190520358367d /modules/m_resv.c | |
parent | bd4c1907846b95b95e7d89da42f65bb2b2064057 (diff) |
- m_xline.c, m_resv.c: fixed bug where the mask which is to be banned is checked in
both valid_wild_card_simple() and valid_wild_card()
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@4276 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules/m_resv.c')
-rw-r--r-- | modules/m_resv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/m_resv.c b/modules/m_resv.c index e40ea5c..ef12f86 100644 --- a/modules/m_resv.c +++ b/modules/m_resv.c @@ -60,7 +60,7 @@ mo_resv(struct Client *client_p, struct Client *source_p, /* RESV #channel ON irc.server.com :abuse * RESV kiddie ON irc.server.com :abuse */ - if (parse_aline("RESV", source_p, parc, parv, AWILD, &resv, NULL, + if (parse_aline("RESV", source_p, parc, parv, 0, &resv, NULL, &tkline_time, &target_server, &reason) < 0) return 0; |