summaryrefslogtreecommitdiff
path: root/rb/src/IceRuby/Communicator.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2007-01-08 20:38:05 +0000
committerMark Spruiell <mes@zeroc.com>2007-01-08 20:38:05 +0000
commitb55f1538e4a42e78de77929627c9efa2e3a15315 (patch)
tree03908e07e81539cbdde71b3d98570ec4b98679f6 /rb/src/IceRuby/Communicator.cpp
parentUpdated copyright header (diff)
downloadice-b55f1538e4a42e78de77929627c9efa2e3a15315.tar.bz2
ice-b55f1538e4a42e78de77929627c9efa2e3a15315.tar.xz
ice-b55f1538e4a42e78de77929627c9efa2e3a15315.zip
fixes for bugs 1536, 1652
Diffstat (limited to 'rb/src/IceRuby/Communicator.cpp')
-rw-r--r--rb/src/IceRuby/Communicator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rb/src/IceRuby/Communicator.cpp b/rb/src/IceRuby/Communicator.cpp
index 07ab706da24..9902f7a7b1a 100644
--- a/rb/src/IceRuby/Communicator.cpp
+++ b/rb/src/IceRuby/Communicator.cpp
@@ -241,7 +241,7 @@ IceRuby_Communicator_isShutdown(VALUE self)
ICE_RUBY_TRY
{
Ice::CommunicatorPtr p = getCommunicator(self);
- p->isShutdown();
+ return p->isShutdown() ? Qtrue : Qfalse;
}
ICE_RUBY_CATCH
return Qnil;