From 091ea0ed71c30874902c56e977ba7c9b241c9376 Mon Sep 17 00:00:00 2001 From: drbrain Date: Sun, 10 Apr 2011 22:24:51 +0000 Subject: * ext/openssl/ossl.c: Fix typo, document version constants. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31257 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/openssl/ossl.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'ext/openssl') diff --git a/ext/openssl/ossl.c b/ext/openssl/ossl.c index d20b6b4be5..1abedf1237 100644 --- a/ext/openssl/ossl.c +++ b/ext/openssl/ossl.c @@ -758,7 +758,7 @@ ossl_debug_set(VALUE self, VALUE val) * === Peer Verification * * An unverified SSL connection does not provide much security. For enhanced - * security the client or server can verify the certificate the of its peer. + * security the client or server can verify the certificate of its peer. * * The client can be modified to verify the server's certificate against the * certificate authority's certificate: @@ -819,10 +819,18 @@ Init_openssl() mOSSL = rb_define_module("OpenSSL"); /* - * Constants + * OpenSSL ruby extension version */ rb_define_const(mOSSL, "VERSION", rb_str_new2(OSSL_VERSION)); + + /* + * Version of OpenSSL the ruby OpenSSL extension was built with + */ rb_define_const(mOSSL, "OPENSSL_VERSION", rb_str_new2(OPENSSL_VERSION_TEXT)); + /* + * Version number of OpenSSL the ruby OpenSSL extension was built with + * (base 16) + */ rb_define_const(mOSSL, "OPENSSL_VERSION_NUMBER", INT2NUM(OPENSSL_VERSION_NUMBER)); /* -- cgit v1.2.3