Ignore:
Timestamp:
2007-04-06T05:20:31Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
552e641
Parents:
0da65d5
Message:

More cleanups, mainly in the callbacks. Replaced things like
do_error_dialog() and (set|hide)_login_progress(_error)?() with things
that hopefully make more sense.

Although it's still not really great...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/presence.c

    r0da65d5 raef4828  
    4141                {
    4242                        if( set_getbool( &ic->irc->set, "debug" ) )
    43                                 serv_got_crap( ic, "WARNING: Could not handle presence information from JID: %s", from );
     43                                imc_log( ic, "WARNING: Could not handle presence information from JID: %s", from );
    4444                        return XT_HANDLED;
    4545                }
     
    7474                {
    7575                        if( set_getbool( &ic->irc->set, "debug" ) )
    76                                 serv_got_crap( ic, "WARNING: Received presence information from unknown JID: %s", from );
     76                                imc_log( ic, "WARNING: Received presence information from unknown JID: %s", from );
    7777                        return XT_HANDLED;
    7878                }
     
    103103        {
    104104                /* Not sure about this one, actually... */
    105                 serv_got_crap( ic, "%s just accepted your authorization request", from );
     105                imc_log( ic, "%s just accepted your authorization request", from );
    106106        }
    107107        else if( strcmp( type, "unsubscribe" ) == 0 || strcmp( type, "unsubscribed" ) == 0 )
Note: See TracChangeset for help on using the changeset viewer.