1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-08 15:33:13 +02:00

- Fix incorrect parameter use on sendto_serv_butone_token_opt(), reported and patch supplied by FalconKirtaran (#4195)

This commit is contained in:
William Pitcock
2013-05-19 08:06:08 +00:00
parent 55a169cd75
commit 9c857d1314
+1 -1
View File
@@ -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;