Fix the ERR_NOTREGISTERED message

This commit is contained in:
Přemysl Eric Janouch 2014-07-17 23:17:20 +02:00
parent 057a01e2e5
commit 86e3ae951e
1 changed files with 1 additions and 1 deletions

View File

@ -552,7 +552,7 @@ static const char *g_default_replies[] =
[IRC_ERR_NONICKNAMEGIVEN] = ":No nickname given",
[IRC_ERR_ERRONEOUSNICKNAME] = "%s :Erroneous nickname",
[IRC_ERR_NICKNAMEINUSE] = "%s :Nickname is already in use",
[IRC_ERR_NOTREGISTERED] = "%s :You have not registered",
[IRC_ERR_NOTREGISTERED] = ":You have not registered",
[IRC_ERR_NEEDMOREPARAMS] = "%s :Not enough parameters",
[IRC_ERR_ALREADYREGISTERED] = ":Unauthorized command (already registered)",
};