diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-06 01:33:33 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-06 01:33:33 +0100 |
commit | 18da20bf7690ca3c1e9cf4b70c2749a11c75b339 (patch) | |
tree | ba6998f3923c2ce1d8ab041da4c3f5f7a0fa4ed0 /irc_user.c | |
parent | c1a8a163703a903c7a69e06286013f12d6bf865e (diff) |
Added /part msgs, and the ability to silently remove users from channels
(when sending a /quit instead, for example).
Diffstat (limited to 'irc_user.c')
-rw-r--r-- | irc_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ int irc_user_free( irc_t *irc, irc_user_t *iu ) g_hash_table_remove( irc->nick_user_hash, iu->key ); for( l = irc->channels; l; l = l->next ) - irc_channel_del_user( (irc_channel_t*) l->data, iu ); + irc_channel_del_user( (irc_channel_t*) l->data, iu, FALSE, NULL ); g_free( iu->nick ); if( iu->nick != iu->user ) g_free( iu->user ); |