mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-20 22:26:54 +01:00
fix misspelling
This commit is contained in:
parent
fec47fb68d
commit
40ac233a92
3 changed files with 4 additions and 4 deletions
|
@ -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 );
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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 );
|
||||
|
|
Loading…
Reference in a new issue