summaryrefslogtreecommitdiff
path: root/ace/Select_Reactor.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-07-27 17:34:01 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-07-27 17:34:01 +0000
commitc2c8ac00a1a68cba6cdae6d81a7084ea8e5bd97d (patch)
tree238c156aad3808d8809a23d6f5756afa65478718 /ace/Select_Reactor.cpp
parent7fcd25805a8c99c8a2ac97a081e0c91dd2fb027a (diff)
downloadATCD-c2c8ac00a1a68cba6cdae6d81a7084ea8e5bd97d.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Select_Reactor.cpp')
-rw-r--r--ace/Select_Reactor.cpp2
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;