diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-07-27 17:34:01 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-07-27 17:34:01 +0000 |
commit | c2c8ac00a1a68cba6cdae6d81a7084ea8e5bd97d (patch) | |
tree | 238c156aad3808d8809a23d6f5756afa65478718 /ace/Select_Reactor.cpp | |
parent | 7fcd25805a8c99c8a2ac97a081e0c91dd2fb027a (diff) | |
download | ATCD-c2c8ac00a1a68cba6cdae6d81a7084ea8e5bd97d.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Select_Reactor.cpp')
-rw-r--r-- | ace/Select_Reactor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Select_Reactor.cpp b/ace/Select_Reactor.cpp index 69a9e00d061..b767d066166 100644 --- a/ace/Select_Reactor.cpp +++ b/ace/Select_Reactor.cpp @@ -115,7 +115,7 @@ ACE_Select_Reactor_Handler_Repository::open (size_t size) } // Increase the number of handles if <size> is greater than the // current limit. - if (size < (size_t) ACE::max_handles ()) + if (size > (size_t) ACE::max_handles ()) return ACE::set_handle_limit (size); else return 0; |