diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-06-22 21:49:13 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-06-22 21:49:13 +0000 |
commit | 80e1c3c52acdb2971e3a67aa1ef5a076fdf78248 (patch) | |
tree | 1957032985c72a2aaf989def7329766d63bd627f /modules | |
parent | b5b8dd7e4f23fb65c29b967d0db6743ef6ad1a74 (diff) |
- m_dline.c:mo_dline(): don't require an address to be prepended with *@
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@4048 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules')
-rw-r--r-- | modules/m_dline.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/m_dline.c b/modules/m_dline.c index 5667d44..6f69b6c 100644 --- a/modules/m_dline.c +++ b/modules/m_dline.c @@ -395,7 +395,7 @@ static int mo_undline(struct Client *client_p, struct Client *source_p, int parc, char *parv[]) { - char *addr = NULL, *user = NULL; + char *addr = NULL; char *target_server = NULL; if (!HasOFlag(source_p, OPER_FLAG_UNDLINE)) @@ -412,8 +412,8 @@ mo_undline(struct Client *client_p, struct Client *source_p, return 0; } - if (parse_aline("UNDLINE", source_p, parc, parv, 0, &user, - &addr, NULL, &target_server, NULL) < 0) + if (parse_aline("UNDLINE", source_p, parc, parv, 0, &addr, + NULL, NULL, &target_server, NULL) < 0) return 0; if (target_server != NULL) |