Changeset 0fd8559 for protocols/nogaim.c


Ignore:
Timestamp:
2007-02-18T17:48:04Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
0f4c1bb5
Parents:
8de63c3 (diff), c7d0f41 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merging new Jabber module. See the massive changelog for all the cool
improvements. :-)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    r8de63c3 r0fd8559  
    280280        account_t *a;
    281281       
     282        /* Nested calls might happen sometimes, this is probably the best
     283           place to catch them. */
     284        if( gc->flags & OPT_LOGGING_OUT )
     285                return;
     286        else
     287                gc->flags |= OPT_LOGGING_OUT;
     288       
    282289        serv_got_crap( gc, "Signing off.." );
    283290       
    284291        b_event_remove( gc->keepalive );
    285         gc->flags |= OPT_LOGGING_OUT;
    286        
    287292        gc->keepalive = 0;
    288293        gc->acc->prpl->close( gc );
     
    10141019        }
    10151020       
    1016         g_list_free( ms );
    1017        
    10181021        return( 1 );
    10191022}
Note: See TracChangeset for help on using the changeset viewer.