diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-03-06 10:35:33 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-03-06 10:35:33 +0000 |
commit | 6cc8562fcab23271e8b51d391cb330054f758b9d (patch) | |
tree | 07a78f9df7195574448be92f3738fa4f043e6b03 /src/parse.c | |
parent | 3f43c8cd59c4993b77f9e23b5257c97874bebe8c (diff) |
- parse.c:do_numeric(): now use sendto_channel_butone() to also forward
numerics that are sent to channels to remote clients
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@3106 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src/parse.c')
-rw-r--r-- | src/parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse.c b/src/parse.c index 66e5e72..bf94a92 100644 --- a/src/parse.c +++ b/src/parse.c @@ -719,8 +719,8 @@ handle_numeric(char numeric[], struct Client *client_p, struct Client *source_p, numeric, ID_or_name(target_p, target_p), parv[2]); } else - sendto_channel_local(ALL_MEMBERS, 0, chptr, ":%s %s %s %s", - source_p->name, numeric, chptr->chname, parv[2]); + sendto_channel_butone(client_p, source_p, chptr, 0, "%s %s %s", + numeric, chptr->chname, parv[2]); } /* m_not_oper() |