degesch: fix logging a bit

It needs a rewrite.
This commit is contained in:
Přemysl Eric Janouch 2015-04-21 00:09:06 +02:00
parent 0a87e43aff
commit 635c28820d
1 changed files with 8 additions and 8 deletions

View File

@ -901,7 +901,7 @@ buffer_line_display (struct app_context *ctx, struct buffer_line *line)
char *nick = NULL;
const char *userhost = NULL;
if (who)
if (*who)
{
nick = irc_cut_nickname (who);
userhost = irc_find_userhost (who);
@ -919,14 +919,14 @@ buffer_line_display (struct app_context *ctx, struct buffer_line *line)
str_append_printf (&text, " - Notice(%s): %s", nick, object);
break;
case BUFFER_LINE_JOIN:
if (who)
if (*who)
str_append_printf (&text, "--> %s (%s) has joined %s",
nick, userhost, object);
else
str_append_printf (&text, "--> You have joined %s", object);
break;
case BUFFER_LINE_PART:
if (who)
if (*who)
str_append_printf (&text, "<-- %s (%s) has left %s (%s)",
nick, userhost, object, reason);
else
@ -934,7 +934,7 @@ buffer_line_display (struct app_context *ctx, struct buffer_line *line)
object, reason);
break;
case BUFFER_LINE_KICK:
if (who)
if (*who)
str_append_printf (&text, "<-- %s has kicked %s (%s)",
nick, object, reason);
else
@ -942,14 +942,14 @@ buffer_line_display (struct app_context *ctx, struct buffer_line *line)
object, reason);
break;
case BUFFER_LINE_NICK:
if (who)
str_append_printf (&text, "<-- %s is now known as %s",
if (*who)
str_append_printf (&text, " - %s is now known as %s",
nick, object);
else
str_append_printf (&text, "<-- You are now known as %s", object);
str_append_printf (&text, " - You are now known as %s", object);
break;
case BUFFER_LINE_QUIT:
if (who)
if (*who)
str_append_printf (&text, "<-- %s (%s) has quit (%s)",
nick, userhost, reason);
else