aboutsummaryrefslogtreecommitdiff
path: root/kike.c
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2015-06-11 22:39:14 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2015-06-11 22:39:14 +0200
commit55fde4803caddb12df9add61945669fe3a301819 (patch)
tree7e6c6a0c2849a3d8ecd27df057d9f4a766a6352d /kike.c
parent065a86b1706c18833dfa6c7d54e65736d05da20c (diff)
downloadxK-55fde4803caddb12df9add61945669fe3a301819.tar.gz
xK-55fde4803caddb12df9add61945669fe3a301819.tar.xz
xK-55fde4803caddb12df9add61945669fe3a301819.zip
kike: use * if there's no nickname yet
Diffstat (limited to 'kike.c')
-rw-r--r--kike.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kike.c b/kike.c
index 45dd02b..df30ec0 100644
--- a/kike.c
+++ b/kike.c
@@ -837,7 +837,7 @@ client_close_link (struct client *c, const char *reason)
// that a/ we ignore any successive messages, and b/ that the connection
// is killed after the write buffer is transferred and emptied.
client_send (c, "ERROR :Closing Link: %s[%s] (%s)",
- c->nickname ? c->nickname : "",
+ c->nickname ? c->nickname : "*",
c->hostname /* TODO host IP? */, reason);
c->closing_link = true;
@@ -952,7 +952,7 @@ static void
irc_make_reply (struct client *c, int id, va_list ap, struct str *output)
{
str_append_printf (output, ":%s %03d %s ",
- c->ctx->server_name, id, c->nickname ? c->nickname : "");
+ c->ctx->server_name, id, c->nickname ? c->nickname : "*");
str_append_vprintf (output,
irc_get_text (c->ctx, id, g_default_replies[id]), ap);
}