diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-11-05 07:58:29 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-11-05 07:58:29 +0000 |
commit | 183c6e4862627899aad7f74b91eda8f5a052c74b (patch) | |
tree | 7e1600b71b0f1f3d06b8f5d517236daa10b9e6fa /src/connectionmanager.cpp | |
parent | 77375a7b64b0e264c7318220a59738e841a1c670 (diff) | |
download | libbu++-183c6e4862627899aad7f74b91eda8f5a052c74b.tar.gz libbu++-183c6e4862627899aad7f74b91eda8f5a052c74b.tar.bz2 libbu++-183c6e4862627899aad7f74b91eda8f5a052c74b.tar.xz libbu++-183c6e4862627899aad7f74b91eda8f5a052c74b.zip |
I thought I'd already fixed this, apparently in the conflict it came back.
The connectionmanager no longer prints extra debugging.
Diffstat (limited to 'src/connectionmanager.cpp')
-rw-r--r-- | src/connectionmanager.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/connectionmanager.cpp b/src/connectionmanager.cpp index e44c5f4..ea794a8 100644 --- a/src/connectionmanager.cpp +++ b/src/connectionmanager.cpp | |||
@@ -184,7 +184,6 @@ bool ConnectionManager::scanConnections( int nTimeout, bool bForceTimeout ) | |||
184 | } | 184 | } |
185 | } | 185 | } |
186 | } | 186 | } |
187 | printf("Scanning %d connections.\n", lActive.size() ); | ||
188 | std::list<Connection *>::iterator i; | 187 | std::list<Connection *>::iterator i; |
189 | for( i = lActive.begin(); i != lActive.end(); i++ ) | 188 | for( i = lActive.begin(); i != lActive.end(); i++ ) |
190 | { | 189 | { |
@@ -200,7 +199,6 @@ bool ConnectionManager::scanConnections( int nTimeout, bool bForceTimeout ) | |||
200 | if( (*i)->hasOutput() ) | 199 | if( (*i)->hasOutput() ) |
201 | { | 200 | { |
202 | (*i)->writeOutput(); | 201 | (*i)->writeOutput(); |
203 | printf("Wrote pending output.\n"); | ||
204 | } | 202 | } |
205 | if( (*i)->needDisconnect() && !(*i)->hasOutput() ) | 203 | if( (*i)->needDisconnect() && !(*i)->hasOutput() ) |
206 | { | 204 | { |