Changeset aea8b68 for protocols/jabber
- Timestamp:
- 2010-05-06T00:28:56Z (15 years ago)
- Branches:
- master
- Children:
- f1a0890
- Parents:
- 9438323
- Location:
- protocols/jabber
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/conference.c
r9438323 raea8b68 92 92 { 93 93 char *normalized = jabber_normalize( name ); 94 GSList *l; 94 95 struct groupchat *ret; 95 96 struct jabber_chat *jc; 96 97 97 for( ret = ic->groupchats; ret; ret = ret->next ) 98 { 98 for( l = ic->groupchats; l; l = l->next ) 99 { 100 ret = l->data; 99 101 jc = ret->data; 100 102 if( strcmp( normalized, jc->name ) == 0 ) -
protocols/jabber/jabber.c
r9438323 raea8b68 282 282 283 283 while( ic->groupchats ) 284 jabber_chat_free( ic->groupchats );284 jabber_chat_free( ic->groupchats->data ); 285 285 286 286 if( jd->r_inpa >= 0 ) -
protocols/jabber/presence.c
r9438323 raea8b68 206 206 struct xt_node *node, *cap; 207 207 struct groupchat *c; 208 GSList *l; 208 209 int st; 209 210 … … 229 230 /* Have to send this update to all groupchats too, the server won't 230 231 do this automatically. */ 231 for( c = ic->groupchats; c && st; c = c->next ) 232 { 232 for( l = ic->groupchats; l && st; l = l->next ) 233 { 234 struct groupchat *c = l->data; 233 235 struct jabber_chat *jc = c->data; 234 236
Note: See TracChangeset
for help on using the changeset viewer.