diff options
-rw-r--r-- | CHANGELOG-3.7.md | 3 | ||||
-rw-r--r-- | ruby/src/IceRuby/Connection.cpp | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG-3.7.md b/CHANGELOG-3.7.md index 6c8ad2192f7..09aa10c8da7 100644 --- a/CHANGELOG-3.7.md +++ b/CHANGELOG-3.7.md @@ -17,6 +17,7 @@ particular aspect of Ice. - [Objective-C Changes](#objective-c-changes) - [PHP Changes](#php-changes) - [Python Changes](#python-changes) + - [Ruby Changes](#ruby-changes) # Changes in Ice 3.7.0 @@ -545,3 +546,5 @@ These are the changes since the Ice 3.6 release or snapshot described in - Ice for Ruby is no longer supported on Windows. - Fix Application Ctrl-C handling to be compatible with Ruby 2.x signal handler restrictions. + +- Fixed a bug that prevented the data members of IceSSL::ConnectionInfo from being defined correctly. diff --git a/ruby/src/IceRuby/Connection.cpp b/ruby/src/IceRuby/Connection.cpp index 03e872ea8fb..a4f0f8bcbff 100644 --- a/ruby/src/IceRuby/Connection.cpp +++ b/ruby/src/IceRuby/Connection.cpp @@ -508,7 +508,7 @@ IceRuby::initConnection(VALUE iceModule) // // Instance members. // - rb_define_attr(_wsConnectionInfoClass, "cipher", 1, 0); - rb_define_attr(_wsConnectionInfoClass, "certs", 1, 0); - rb_define_attr(_wsConnectionInfoClass, "verified", 1, 0); + rb_define_attr(_sslConnectionInfoClass, "cipher", 1, 0); + rb_define_attr(_sslConnectionInfoClass, "certs", 1, 0); + rb_define_attr(_sslConnectionInfoClass, "verified", 1, 0); } |