summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 12:53:31 +0000
committerfcolin2007-02-01 12:53:31 +0000
commit62fe96242aa30ff62299a2f93a8609da619515e2 (patch)
tree4f32535217399b3ca1fa905c4edd1aad78dca2f5
parentc5f521add8aac8af9b57b85bef0e82f00b2d819f (diff)
downloadivy-cplusplus-62fe96242aa30ff62299a2f93a8609da619515e2.zip
ivy-cplusplus-62fe96242aa30ff62299a2f93a8609da619515e2.tar.gz
ivy-cplusplus-62fe96242aa30ff62299a2f93a8609da619515e2.tar.bz2
ivy-cplusplus-62fe96242aa30ff62299a2f93a8609da619515e2.tar.xz
Utilisateur : Fcolin Date : 19/02/01 Heure : 10:37 Archivé dans $/Ivy (vss 6)
-rw-r--r--Bus/Ivy/BufferedSocket.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bus/Ivy/BufferedSocket.cxx b/Bus/Ivy/BufferedSocket.cxx
index 6a17b71..b065a15 100644
--- a/Bus/Ivy/BufferedSocket.cxx
+++ b/Bus/Ivy/BufferedSocket.cxx
@@ -109,9 +109,10 @@ void CBufferedSocket::OnSend( int nErrorCode )
empty = buf_out.empty();
if ( !empty ) msg = buf_out.front();
LeaveCriticalSection( &m_CritSection );
- TRACE("CBufferedSocket::OnSend Sending buffer %s\n",msg.c_str());
if ( !empty )
{
+// TRACE("CBufferedSocket::OnSend Sending buffer %s\n",msg.c_str());
+
int lg = msg.length();
int sent = CThreadedSocket::Send( msg.c_str(), lg );
if ( sent == lg )