ruby-changes:31588
From: zzak <ko1@a...>
Date: Wed, 13 Nov 2013 18:34:18 +0900 (JST)
Subject: [ruby-changes:31588] zzak:r43667 (trunk): * ext/openssl/ossl_config.c: [DOC] Document the following:
zzak 2013-11-13 18:34:08 +0900 (Wed, 13 Nov 2013) New Revision: 43667 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=43667 Log: * ext/openssl/ossl_config.c: [DOC] Document the following: - OpenSSL::ConfigError - OpenSSL::Config::DEFAULT_CONFIG_FILE Patched by @vbatts via GH-436 https://github.com/ruby/ruby/pull/436 Modified files: trunk/ChangeLog trunk/ext/openssl/ossl_config.c Index: ChangeLog =================================================================== --- ChangeLog (revision 43666) +++ ChangeLog (revision 43667) @@ -1,3 +1,13 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Wed Nov 13 18:32:12 2013 Zachary Scott <e@z...> + + * ext/openssl/ossl_config.c: [DOC] Document the following: + + - OpenSSL::ConfigError + - OpenSSL::Config::DEFAULT_CONFIG_FILE + + Patched by @vbatts via GH-436 + https://github.com/ruby/ruby/pull/436 + Wed Nov 13 18:03:00 2013 Zachary Scott <e@z...> * ext/openssl/ossl_asn1.c: [DOC] Document parts of Index: ext/openssl/ossl_config.c =================================================================== --- ext/openssl/ossl_config.c (revision 43666) +++ ext/openssl/ossl_config.c (revision 43667) @@ -15,6 +15,11 @@ https://github.com/ruby/ruby/blob/trunk/ext/openssl/ossl_config.c#L15 * Classes */ VALUE cConfig; +/* Document-class: OpenSSL::ConfigError + * + * General error for openssl library configuration files. Including formating, + * parsing errors, etc. + */ VALUE eConfigError; /* @@ -55,6 +60,10 @@ GetConfigPtr(VALUE obj) https://github.com/ruby/ruby/blob/trunk/ext/openssl/ossl_config.c#L60 return conf; } +/* Document-const: DEFAULT_CONFIG_FILE + * + * The default system configuration file for openssl + */ /* * INIT -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/