From f2003b441178ec21c8943377cf60c49997d35a41 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sat, 20 Feb 2016 17:59:38 -0600 Subject: [PATCH] send: fix sendto_anywhere() missing a target param --- ircd/send.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ircd/send.c b/ircd/send.c index 982613b7..944f329c 100644 --- a/ircd/send.c +++ b/ircd/send.c @@ -1175,6 +1175,8 @@ sendto_anywhere(struct Client *target_p, struct Client *source_p, struct MsgBuf msgbuf; build_msgbuf_from(&msgbuf, source_p, command); + msgbuf.target = target_p->name; + linebuf_put_msgvbuf(&msgbuf, &linebuf, target_p->localClient->caps, pattern, &args); } }