Changeset 5c90890 for irc_commands.c
- Timestamp:
- 2018-07-12T08:54:12Z (6 years ago)
- Branches:
- master
- Children:
- c82e4ca
- Parents:
- b9d1fdc
- git-author:
- dequis <dx@…> (03-07-18 06:17:17)
- git-committer:
- dequis <dx@…> (12-07-18 08:54:12)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_commands.c
rb9d1fdc r5c90890 449 449 450 450 if (!channel || *channel == '0' || *channel == '*' || !*channel) { 451 irc_send_who(irc, irc->users, "**"); 451 GList *all_users = g_hash_table_get_values(irc->nick_user_hash); 452 irc_send_who(irc, (GSList *) all_users, "**"); 453 g_list_free(all_users); 452 454 } else if ((ic = irc_channel_by_name(irc, channel))) { 453 455 irc_send_who(irc, ic->users, channel);
Note: See TracChangeset
for help on using the changeset viewer.