Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/presence.c

    r840bba8 reaaa986  
    6868                {
    6969                        bud->away_state = NULL;
    70                         /* Let's only set last_act if there's *no* away state,
    71                            since it could be some auto-away thingy. */
    72                         bud->last_act = time( NULL );
    7370                }
    7471               
     
    208205        struct jabber_data *jd = ic->proto_data;
    209206        struct xt_node *node, *cap;
    210         struct groupchat *c;
     207        GSList *l;
    211208        int st;
    212209       
     
    232229        /* Have to send this update to all groupchats too, the server won't
    233230           do this automatically. */
    234         for( c = ic->groupchats; c && st; c = c->next )
    235         {
     231        for( l = ic->groupchats; l && st; l = l->next )
     232        {
     233                struct groupchat *c = l->data;
    236234                struct jabber_chat *jc = c->data;
    237235               
Note: See TracChangeset for help on using the changeset viewer.