Changeset 8d74291 for protocols/nogaim.c


Ignore:
Timestamp:
2006-09-22T16:56:58Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
fe7a554
Parents:
5997488
Message:

Fixed return value on incomplete write()s in write handler, protection
against write()ing to sockets that are closed already, hopefully sane
detection for SASL support, and only sending type=unavailable presence
tag to logged in sessions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    r5997488 r8d74291  
    279279        user_t *t, *u = irc->users;
    280280        account_t *a;
     281       
     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;
    281286       
    282287        serv_got_crap( gc, "Signing off.." );
Note: See TracChangeset for help on using the changeset viewer.