Changeset 74f1cde for irc_user.c


Ignore:
Timestamp:
2010-03-27T18:05:38Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
410bf6d
Parents:
280c56a
Message:

irc_usermsg() works a little bit again. Have to figure out how and where
to restore multiline support though.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_user.c

    r280c56a r74f1cde  
    3434        iu->user = iu->host = iu->fullname = iu->nick;
    3535       
    36         iu->is_private = set_getbool( &irc->b->set, "private" );
     36        iu->flags = set_getbool( &irc->b->set, "private" ) ? IRC_USER_PRIVATE : 0;
    3737       
    3838        iu->key = g_strdup( nick );
     
    117117static gboolean root_privmsg( irc_user_t *iu, const char *msg )
    118118{
     119        g_free( iu->irc->last_root_cmd );
     120        iu->irc->last_root_cmd = g_strdup( iu->nick );
     121       
    119122        root_command_string( iu->irc, msg );
    120123       
Note: See TracChangeset for help on using the changeset viewer.