Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/presence.c

    reaaa986 r840bba8  
    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 );
    7073                }
    7174               
     
    205208        struct jabber_data *jd = ic->proto_data;
    206209        struct xt_node *node, *cap;
    207         GSList *l;
     210        struct groupchat *c;
    208211        int st;
    209212       
     
    229232        /* Have to send this update to all groupchats too, the server won't
    230233           do this automatically. */
    231         for( l = ic->groupchats; l && st; l = l->next )
    232         {
    233                 struct groupchat *c = l->data;
     234        for( c = ic->groupchats; c && st; c = c->next )
     235        {
    234236                struct jabber_chat *jc = c->data;
    235237               
Note: See TracChangeset for help on using the changeset viewer.