aboutsummaryrefslogtreecommitdiffstats
path: root/irc_user.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-06-06 01:33:33 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2010-06-06 01:33:33 +0100
commit18da20bf7690ca3c1e9cf4b70c2749a11c75b339 (patch)
treeba6998f3923c2ce1d8ab041da4c3f5f7a0fa4ed0 /irc_user.c
parentc1a8a163703a903c7a69e06286013f12d6bf865e (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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc_user.c b/irc_user.c
index 1884e66e..e18e67cc 100644
--- a/irc_user.c
+++ b/irc_user.c
@@ -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 );