Changeset e35d1a1 for protocols/yahoo
- Timestamp:
- 2007-04-22T20:44:27Z (18 years ago)
- Branches:
- master
- Children:
- 43671b9
- Parents:
- c737ba7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/yahoo/yahoo.c
rc737ba7 re35d1a1 145 145 GSList *l; 146 146 147 while( ic-> conversations )148 imcb_chat_ removed( ic->conversations );147 while( ic->groupchats ) 148 imcb_chat_free( ic->groupchats ); 149 149 150 150 for( l = yd->buddygroups; l; l = l->next ) … … 318 318 319 319 yahoo_conference_logoff( yd->y2_id, NULL, c->data, c->title ); 320 imcb_chat_ removed( c );320 imcb_chat_free( c ); 321 321 } 322 322 … … 798 798 { 799 799 yahoo_conference_decline( inv->yid, NULL, inv->members, inv->name, "User rejected groupchat" ); 800 imcb_chat_ removed( inv->c );800 imcb_chat_free( inv->c ); 801 801 g_free( inv->name ); 802 802 g_free( inv ); … … 841 841 struct groupchat *c; 842 842 843 for( c = ic-> conversations; c && strcmp( c->title, room ) != 0; c = c->next );843 for( c = ic->groupchats; c && strcmp( c->title, room ) != 0; c = c->next ); 844 844 845 845 if( c ) … … 853 853 struct groupchat *c; 854 854 855 for( c = ic-> conversations; c && strcmp( c->title, room ) != 0; c = c->next );855 for( c = ic->groupchats; c && strcmp( c->title, room ) != 0; c = c->next ); 856 856 857 857 if( c ) … … 865 865 struct groupchat *c; 866 866 867 for( c = ic-> conversations; c && strcmp( c->title, room ) != 0; c = c->next );867 for( c = ic->groupchats; c && strcmp( c->title, room ) != 0; c = c->next ); 868 868 869 869 if( c )
Note: See TracChangeset
for help on using the changeset viewer.