diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2014-07-17 23:17:20 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2014-07-17 23:48:38 +0200 |
commit | 86e3ae951e5faf6811bcffa0ac831da8b84f4197 (patch) | |
tree | 9ee0e2eb685432e42c2970725d37a17a4f6d42e6 | |
parent | 057a01e2e5ec4cb3721e16999af9b50df27b5429 (diff) | |
download | xK-86e3ae951e5faf6811bcffa0ac831da8b84f4197.tar.gz xK-86e3ae951e5faf6811bcffa0ac831da8b84f4197.tar.xz xK-86e3ae951e5faf6811bcffa0ac831da8b84f4197.zip |
Fix the ERR_NOTREGISTERED message
-rw-r--r-- | src/kike.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)", }; |