diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-09-17 23:59:35 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-09-17 23:59:35 +0000 |
commit | 5c6b45de0961b050ebca740a607c86bf45251789 (patch) | |
tree | 5de603777af43bfe9e3a59722600807ae03a8615 | |
parent | 8c0b390617ea42af40d409bd1fbc541e63321239 (diff) | |
download | libbu++-5c6b45de0961b050ebca740a607c86bf45251789.tar.gz libbu++-5c6b45de0961b050ebca740a607c86bf45251789.tar.bz2 libbu++-5c6b45de0961b050ebca740a607c86bf45251789.tar.xz libbu++-5c6b45de0961b050ebca740a607c86bf45251789.zip |
Removed a debug line.
-rw-r--r-- | src/client.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp index 7332abc..d416700 100644 --- a/src/client.cpp +++ b/src/client.cpp | |||
@@ -64,7 +64,6 @@ void Bu::Client::processOutput() | |||
64 | if( sWriteBuf.getSize() > 0 ) | 64 | if( sWriteBuf.getSize() > 0 ) |
65 | { | 65 | { |
66 | int nAmnt = (sWriteBuf.getSize()<2048)?(sWriteBuf.getSize()):(2048); | 66 | int nAmnt = (sWriteBuf.getSize()<2048)?(sWriteBuf.getSize()):(2048); |
67 | printf("Transmitting %d of %ld bytes.\n", nAmnt, sWriteBuf.getSize() ); | ||
68 | pSocket->write( sWriteBuf.getStr(), nAmnt ); | 67 | pSocket->write( sWriteBuf.getStr(), nAmnt ); |
69 | sWriteBuf.trimFront( nAmnt ); | 68 | sWriteBuf.trimFront( nAmnt ); |
70 | //sWriteBuf.clear(); | 69 | //sWriteBuf.clear(); |