Changeset 13857c6 for protocols/jabber
- Timestamp:
- 2008-01-13T17:13:45Z (17 years ago)
- Branches:
- master
- Children:
- 52744f8
- Parents:
- dded27d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/conference.c
rdded27d r13857c6 73 73 74 74 room = xt_find_attr( orig, "to" ); 75 if( ( bud = jabber_buddy_by_jid( ic, room, 0 ) ) ) 76 jabber_chat_free( jabber_chat_by_jid( ic, bud->bare_jid ) ); 77 75 bud = jabber_buddy_by_jid( ic, room, 0 ); 78 76 err = jabber_error_parse( xt_find_node( node->children, "error" ), XMLNS_STANZA_ERROR ); 79 77 if( err ) 80 78 { 81 imcb_error( ic, "Error joining groupchat %s: %s%s%s", 82 bud->bare_jid, err->code, err->text ? ": " : "", 83 err->text ? err->text : "" ); 79 imcb_error( ic, "Error joining groupchat %s: %s%s%s", room, err->code, 80 err->text ? ": " : "", err->text ? err->text : "" ); 84 81 jabber_error_free( err ); 85 82 } 83 if( bud ) 84 jabber_chat_free( jabber_chat_by_jid( ic, bud->bare_jid ) ); 86 85 87 86 return XT_HANDLED;
Note: See TracChangeset
for help on using the changeset viewer.