diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-03-27 14:10:03 -0400 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-03-27 14:10:03 -0400 |
commit | 410bf6d47436e83a09378aac2a8de24709b83422 (patch) | |
tree | 9225883e2d0d98bf02b9915eaca5455abc14478e /irc_send.c | |
parent | 74f1cdef999356e40e3fa3b6a2d89876b6c0c303 (diff) |
Fixed bug in /WHO $channel output.
Diffstat (limited to 'irc_send.c')
-rw-r--r-- | irc_send.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -245,7 +245,7 @@ void irc_send_who( irc_t *irc, GSList *l, const char *channel ) irc_user_t *iu = l->data; /* TODO(wilmer): Restore away/channel information here */ irc_send_num( irc, 352, "%s %s %s %s %s %c :0 %s", - "*", iu->user, iu->host, irc->root->host, + channel ? : "*", iu->user, iu->host, irc->root->host, iu->nick, 'H', iu->fullname ); l = l->next; } |