Changeset 998b103 for protocols/nogaim.c


Ignore:
Timestamp:
2007-06-13T23:31:39Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
bdda9e9
Parents:
43d8cc5
Message:

Added imcb_remove_buddy() so deletions in Jabber roster pushes actually
work. This also solves the issue of underscores appearing and disappearing
in their nicknames when people leave/join a chat.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    r43d8cc5 r998b103  
    440440                        imcb_log( ic, "User `%s' changed name to `%s'", u->nick, u->realname );
    441441        }
     442}
     443
     444void imcb_remove_buddy( struct im_connection *ic, char *handle, char *group )
     445{
     446        user_t *u;
     447       
     448        if( ( u = user_findhandle( ic, handle ) ) )
     449                user_del( ic->irc, u->nick );
    442450}
    443451
Note: See TracChangeset for help on using the changeset viewer.