Browse Source

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

tags/non-daw-v1.2.0
Jonathan Moore Liles 12 years ago
parent
commit
14b8507fcb
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      session-manager/src/nsmd.C

+ 3
- 3
session-manager/src/nsmd.C 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;
}


Loading…
Cancel
Save