Changeset e1aaea4


Ignore:
Timestamp:
2010-10-21T22:14:14Z (13 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
1d19cdb
Parents:
79b5c41
Message:

Fixed Ping Timeout on connection takeover (bug #692).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.c

    r79b5c41 re1aaea4  
    197197        }
    198198       
    199         irc_write( irc, "ERROR :Closing link: %s", reason ? : "" );
     199        if( reason )
     200                irc_write( irc, "ERROR :Closing link: %s", reason );
    200201       
    201202        ipc_to_master_str( "OPERMSG :Client exiting: %s@%s [%s]\r\n",
     
    710711                        irc_send_join( ic, irc->user );
    711712        }
     713       
     714        /* We may be waiting for a PONG from the previous client connection. */
     715        irc->pinging = FALSE;
    712716}
    713717
Note: See TracChangeset for help on using the changeset viewer.