1
0
Fork 0
forked from External/ergo

Add missing argument to ERR_NEEDMOREPARAMS on USER commands.

Refs:

* other instances in the codebase
* https://defs.ircdocs.horse/defs/numerics.html#err-needmoreparams-461
* https://modern.ircdocs.horse/#errneedmoreparams-461
This commit is contained in:
Valentin Lorentz 2021-08-13 21:10:39 +02:00 committed by Shivaram Lingamneni
parent a24b31cbd6
commit 3994125d88

View file

@ -3011,7 +3011,7 @@ func userHandler(server *Server, client *Client, msg ircmsg.Message, rb *Respons
username, realname := msg.Params[0], msg.Params[3]
if len(realname) == 0 {
rb.Add(nil, server.name, ERR_NEEDMOREPARAMS, client.Nick(), client.t("Not enough parameters"))
rb.Add(nil, server.name, ERR_NEEDMOREPARAMS, client.Nick(), "USER", client.t("Not enough parameters"))
return false
}