Changeset 998b103
- Timestamp:
- 2007-06-13T23:31:39Z (17 years ago)
- Branches:
- master
- Children:
- bdda9e9
- Parents:
- 43d8cc5
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
bitlbee.c
r43d8cc5 r998b103 70 70 #ifdef IPV6 71 71 memset( &listen_addr6, 0, sizeof( listen_addr6 ) ); 72 memset( &listen_addr, 0, sizeof( listen_addr ) ); 72 73 listen_addr6.sin6_family = AF_INET6; 73 74 listen_addr6.sin6_port = htons( global.conf->port ); … … 77 78 use_ipv6 = 0; 78 79 #endif 79 memset( &listen_addr, 0, sizeof( listen_addr ) );80 80 listen_addr.sin_family = AF_INET; 81 81 listen_addr.sin_port = htons( global.conf->port ); -
protocols/jabber/conference.c
r43d8cc5 r998b103 167 167 if( s ) *s = '/'; 168 168 } 169 else if( type ) /* This only gets called if type is NULL or "unavailable"*/169 else if( type ) /* type can only be NULL or "unavailable" in this function */ 170 170 { 171 171 s = strchr( bud->ext_jid, '/' ); 172 172 if( s ) *s = 0; 173 173 imcb_chat_remove_buddy( chat, bud->ext_jid, NULL ); 174 if( bud != jc->me && bud->flags & JBFLAG_IS_ANONYMOUS ) 175 imcb_remove_buddy( ic, bud->ext_jid, NULL ); 174 176 if( s ) *s = '/'; 175 177 -
protocols/jabber/iq.c
r43d8cc5 r998b103 378 378 else if( strcmp( sub, "remove" ) == 0 ) 379 379 { 380 /* Don't have any API call for this yet! So let's381 just try to handle this as well as we can. */382 380 jabber_buddy_remove_bare( ic, jid ); 383 imcb_buddy_status( ic, jid, 0, NULL, NULL ); 384 /* FIXME! */ 381 imcb_remove_buddy( ic, jid, NULL ); 385 382 } 386 383 } -
protocols/jabber/jabber.c
r43d8cc5 r998b103 334 334 { 335 335 jd->flags &= ~JFLAG_XMLCONSOLE; 336 /* FIXME imcb_remove_buddy( ic, JABBER_XMLCONSOLE_HANDLE, NULL ); */336 imcb_remove_buddy( ic, JABBER_XMLCONSOLE_HANDLE, NULL ); 337 337 return; 338 338 } -
protocols/nogaim.c
r43d8cc5 r998b103 440 440 imcb_log( ic, "User `%s' changed name to `%s'", u->nick, u->realname ); 441 441 } 442 } 443 444 void 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 ); 442 450 } 443 451
Note: See TracChangeset
for help on using the changeset viewer.