diff options
Diffstat (limited to 'irc_user.c')
-rw-r--r-- | irc_user.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -34,11 +34,6 @@ irc_user_t *irc_user_new( irc_t *irc, const char *nick ) iu->nick = g_strdup( nick ); iu->user = iu->host = iu->fullname = iu->nick; - if( set_getbool( &irc->b->set, "private" ) ) - iu->last_channel = NULL; - else - iu->last_channel = irc->default_channel; - iu->key = g_strdup( nick ); nick_lc( iu->key ); /* Using the hash table for speed and irc->users for easy iteration |