fix misspelling

This commit is contained in:
ehouse 2005-03-09 15:12:57 +00:00
parent fec47fb68d
commit 40ac233a92
3 changed files with 4 additions and 4 deletions

View file

@ -86,8 +86,8 @@ XP_S16 comms_send( CommsCtxt* comms, CommsConnType conType,
XP_S16 comms_resendAll( CommsCtxt* comms );
XP_Bool comms_checkIncommingStream( CommsCtxt* comms, XWStreamCtxt* stream,
CommsAddrRec* addr );
XP_Bool comms_checkIncomingStream( CommsCtxt* comms, XWStreamCtxt* stream,
CommsAddrRec* addr );
# ifdef DEBUG
void comms_getStats( CommsCtxt* comms, XWStreamCtxt* stream );

View file

@ -672,7 +672,7 @@ blocking_gotEvent( CursesAppGlobals* globals, int* ch )
XP_LOGF( "captured incomming ip address: 0x%lx",
addrRec.u.ip.ipAddr );
if ( comms_checkIncommingStream(globals->cGlobals.game.comms,
if ( comms_checkIncomingStream(globals->cGlobals.game.comms,
inboundS,
&addrRec ) ) {
XP_LOGF( "comms read port: %d",

View file

@ -1436,7 +1436,7 @@ newConnectionInput( GIOChannel *source,
inboundS = stream_from_msgbuf( &globals->cGlobals, buf, nRead );
if ( !!inboundS ) {
if ( comms_checkIncommingStream( globals->cGlobals.game.comms,
if ( comms_checkIncomingStream( globals->cGlobals.game.comms,
inboundS, NULL ) ) {
redraw = server_receiveMessage(globals->cGlobals.game.server
, inboundS );