diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-03-07 08:00:01 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-03-07 08:00:01 +0000 |
commit | 436739e220979e8532896b4204ca1d55aecb9f4b (patch) | |
tree | 609df7ce0ae99699ac0b7de20ec3c6a50233259c /cpp/src | |
parent | Fixed incorrect comment about library location after Brent's change to put (diff) | |
download | ice-436739e220979e8532896b4204ca1d55aecb9f4b.tar.bz2 ice-436739e220979e8532896b4204ca1d55aecb9f4b.tar.xz ice-436739e220979e8532896b4204ca1d55aecb9f4b.zip |
http://www.zeroc.com/bugzilla/show_bug.cgi?id=116
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceStorm/SubscriberFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceStorm/SubscriberFactory.cpp b/cpp/src/IceStorm/SubscriberFactory.cpp index 861c203bacf..3b2c820827c 100644 --- a/cpp/src/IceStorm/SubscriberFactory.cpp +++ b/cpp/src/IceStorm/SubscriberFactory.cpp @@ -93,7 +93,7 @@ SubscriberFactory::createSubscriber(const QoS& qos, const Ice::ObjectPrx& obj) newObj = obj->ice_batchOneway(); } } - if(reliability == "twoway" || reliability == "twoway ordered") + else if(reliability == "twoway" || reliability == "twoway ordered") { newObj = obj->ice_twoway(); } |