diff options
Diffstat (limited to 'dev-ruby/IceRuby/files/cached_connection.patch')
-rw-r--r-- | dev-ruby/IceRuby/files/cached_connection.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-ruby/IceRuby/files/cached_connection.patch b/dev-ruby/IceRuby/files/cached_connection.patch new file mode 100644 index 000000000000..2acd2f8f3868 --- /dev/null +++ b/dev-ruby/IceRuby/files/cached_connection.patch @@ -0,0 +1,11 @@ +--- src/IceRuby/Proxy.cpp.orig 2007-07-24 08:02:19.000000000 -0400 ++++ src/IceRuby/Proxy.cpp 2007-07-24 08:02:35.000000000 -0400 +@@ -990,7 +990,7 @@ + { + Ice::ObjectPrx p = getProxy(self); + Ice::ConnectionPtr conn = p->ice_getCachedConnection(); +- if(!conn) ++ if(conn) + { + return createConnection(conn); + } |