diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-19 19:29:07 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-19 19:29:07 +0000 |
commit | 6d58ca782efa1f07c17c66d7b870b08b85527030 (patch) | |
tree | 3feb3e0453ac8433a675f9534143b2a2c0081595 /modules | |
parent | 7fca34c32a92915e85cf729f61b24e130753f556 (diff) |
- m_xline.c:mo_xline(): properly report missing privilege now that
we have the 'unxline' oper flag
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2880 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules')
-rw-r--r-- | modules/m_xline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/m_xline.c b/modules/m_xline.c index a85b670..bab2b7e 100644 --- a/modules/m_xline.c +++ b/modules/m_xline.c @@ -248,7 +248,7 @@ mo_unxline(struct Client *client_p, struct Client *source_p, if (!HasOFlag(source_p, OPER_FLAG_UNXLINE)) { sendto_one(source_p, form_str(ERR_NOPRIVS), me.name, - source_p->name, "xline"); + source_p->name, "unxline"); return 0; } |