diff options
author | Mark Spruiell <mes@zeroc.com> | 2007-01-08 20:38:05 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2007-01-08 20:38:05 +0000 |
commit | b55f1538e4a42e78de77929627c9efa2e3a15315 (patch) | |
tree | 03908e07e81539cbdde71b3d98570ec4b98679f6 /rb/src/IceRuby/Communicator.cpp | |
parent | Updated copyright header (diff) | |
download | ice-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.cpp | 2 |
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; |