This commit is contained in:
Jeff Hill
2002-09-30 20:24:20 +00:00
parent ad3be7f90a
commit dff44268b0
2 changed files with 6 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ void syncGroupWriteNotify::destroy ( casgRecycle & recycle )
syncGroupWriteNotify::~syncGroupWriteNotify ()
{
if ( this->idIsValid ) {
this->chan->ioCancel ( this-> id );
this->chan->ioCancel ( this->id );
}
}

View File

@@ -175,8 +175,11 @@ unsigned tcpiiu::sendBytes ( const void *pBuf,
continue;
}
if ( localError != SOCK_EPIPE && localError != SOCK_ECONNRESET &&
localError != SOCK_ETIMEDOUT && localError != SOCK_ECONNABORTED ) {
if (
localError != SOCK_EPIPE &&
localError != SOCK_ECONNRESET &&
localError != SOCK_ETIMEDOUT &&
localError != SOCK_ECONNABORTED ) {
this->cacRef.printf ( "CAC: unexpected TCP send error: %s\n",
SOCKERRSTR ( localError ) );
}