diff options
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; |