NSM: Don't wait for replies from dumb clients!

pull/52/head
Jonathan Moore Liles 2013-04-04 20:01:48 -07:00
parent 299193dc60
commit 14b8507fcb
1 changed files with 3 additions and 3 deletions

View File

@ -480,10 +480,10 @@ replies_still_pending ( )
for ( std::list<Client*>::const_iterator i = client.begin();
i != client.end();
++i )
/* if ( (*i)->active && (*i)->reply_pending() ) */
/* return true; */
if ( (*i)->reply_pending() )
if ( (*i)->active && (*i)->reply_pending() )
return true;
/* if ( (*i)->reply_pending() ) */
/* return true; */
return false;
}