aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2014-07-17 23:17:20 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2014-07-17 23:48:38 +0200
commit86e3ae951e5faf6811bcffa0ac831da8b84f4197 (patch)
tree9ee0e2eb685432e42c2970725d37a17a4f6d42e6
parent057a01e2e5ec4cb3721e16999af9b50df27b5429 (diff)
downloadxK-86e3ae951e5faf6811bcffa0ac831da8b84f4197.tar.gz
xK-86e3ae951e5faf6811bcffa0ac831da8b84f4197.tar.xz
xK-86e3ae951e5faf6811bcffa0ac831da8b84f4197.zip
Fix the ERR_NOTREGISTERED message
-rw-r--r--src/kike.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kike.c b/src/kike.c
index 3d3817a..0082179 100644
--- a/src/kike.c
+++ b/src/kike.c
@@ -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)",
};