send: fix sendto_anywhere() missing a target param

This commit is contained in:
William Pitcock 2016-02-20 17:59:38 -06:00
parent 71c875fb9a
commit f2003b4411

View file

@ -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);
}
}