From 9c857d13140afedb5409dc17ed5a61e8467387ce Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sun, 19 May 2013 08:06:08 +0000 Subject: [PATCH] - Fix incorrect parameter use on sendto_serv_butone_token_opt(), reported and patch supplied by FalconKirtaran (#4195) --- src/send.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/send.c b/src/send.c index c3afb1374..135d63cff 100644 --- a/src/send.c +++ b/src/send.c @@ -635,7 +635,7 @@ void sendto_serv_butone_token_opt(aClient *one, int opt, char *prefix, char *com if ((opt & OPT_NOT_NICKIP) && (cptr->proto & PROTO_NICKIP)) continue; - sendto_one(cptr, ":%s %s", prefix, command, buff); + sendto_one(cptr, ":%s %s %s", prefix, command, buff); } return;