Changeset 2d317bb for protocols/jabber/presence.c
- Timestamp:
- 2007-04-23T05:18:47Z (18 years ago)
- Branches:
- master
- Children:
- 6286f80
- Parents:
- 0e7ab64
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/presence.c
r0e7ab64 r2d317bb 168 168 char *show = jd->away_state->code; 169 169 char *status = jd->away_message; 170 struct groupchat *c; 170 171 int st; 171 172 … … 179 180 st = jabber_write_packet( ic, node ); 180 181 182 /* Have to send this update to all groupchats too, the server won't 183 do this automatically. */ 184 for( c = ic->groupchats; c && st; c = c->next ) 185 { 186 struct jabber_chat *jc = c->data; 187 188 xt_add_attr( node, "to", jc->me->full_jid ); 189 st = jabber_write_packet( ic, node ); 190 } 191 181 192 xt_free_node( node ); 182 193 return st;
Note: See TracChangeset
for help on using the changeset viewer.