From: Eric Hodel Date: 2011-11-10T08:37:34+09:00 Subject: [ruby-core:40896] [ruby-trunk - Bug #5604][Open] Remove extra ":" in errors created by ossl_raise Issue #5604 has been reported by Eric Hodel. ---------------------------------------- Bug #5604: Remove extra ":" in errors created by ossl_raise http://redmine.ruby-lang.org/issues/5604 Author: Eric Hodel Status: Open Priority: Normal Assignee: Martin Bosslet Category: ext Target version: ruby -v: - Callers of ossl_raise do not need to provide a ":" at the end of the error string because ossl_raise calls ossl_make_error which will add the ":" if necessary. Without this patch some OpenSSL errors look like "SSL_CTX_set_cipher_list:: no cipher match (OpenSSL::SSL::SSLError)" This patch removes the extra ":" added by callers of osl_raise so errors look like "SSL_CTX_set_cipher_list: no cipher match (OpenSSL::SSL::SSLError)". -- http://redmine.ruby-lang.org