This commit is contained in:
Arnaud Cornet 2010-09-12 17:32:55 +01:00
parent 4822364c0f
commit 7fb0823167
1 changed files with 2 additions and 2 deletions

View File

@ -148,8 +148,8 @@ list_t *channel_name_list(struct channel *c)
char *link_name(struct link_any *l)
{
if (LINK(l))
return LINK(l)->name;
return NULL;
return LINK(l)->name ? LINK(l)->name : "(null)";
return "*connecting*";
}
static int irc_001(struct link_server *server, struct line *line)