Changeset d06eabf for protocols/jabber
- Timestamp:
- 2007-06-04T13:22:05Z (17 years ago)
- Branches:
- master
- Children:
- e0e2a71
- Parents:
- 54f2f55
- Location:
- protocols/jabber
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/conference.c
r54f2f55 rd06eabf 160 160 imcb_chat_add_buddy( chat, bud->ext_jid ); 161 161 if( s ) *s = '/'; 162 163 if( bud != jc->me ) 164 imcb_buddy_nick_hint( ic, bud->ext_jid, bud->resource ); 162 165 } 163 166 else if( type ) /* This only gets called if type is NULL or "unavailable" */ -
protocols/jabber/iq.c
r54f2f55 rd06eabf 373 373 group->text : NULL ); 374 374 375 imcb_rename_buddy( ic, jid, name ); 375 if( name ) 376 { 377 imcb_rename_buddy( ic, jid, name ); 378 imcb_buddy_nick_hint( ic, jid, name ); 379 } 376 380 } 377 381 else if( strcmp( sub, "remove" ) == 0 )
Note: See TracChangeset
for help on using the changeset viewer.