aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl.h
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2016-09-04 16:10:02 +0900
committerKazuki Yamaguchi <k@rhe.jp>2016-10-27 16:16:00 +0900
commit47c0ef65cd553864ff236b5e4cd37e4ac8188690 (patch)
tree246ba2dba0a006407461eaecbbc8527f740e335f /ext/openssl/ossl.h
parentff850998167e0abf4d6ca2197136fe94da9da18f (diff)
downloadruby-openssl-47c0ef65cd553864ff236b5e4cd37e4ac8188690.tar.gz
ssl: avoid using ossl_exc_new()
Avoid using ossl_exc_new() and rb_exc_raise() but just use ossl_raise(). This simplifies the code with the exactly same effect. ossl_exc_new() is now removed as it is no longer used anywhere.
Diffstat (limited to 'ext/openssl/ossl.h')
-rw-r--r--ext/openssl/ossl.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/openssl/ossl.h b/ext/openssl/ossl.h
index 0400a33d..7172e39a 100644
--- a/ext/openssl/ossl.h
+++ b/ext/openssl/ossl.h
@@ -138,7 +138,6 @@ int ossl_pem_passwd_cb(char *, int, int, void *);
*/
#define OSSL_ErrMsg() ERR_reason_error_string(ERR_get_error())
NORETURN(void ossl_raise(VALUE, const char *, ...));
-VALUE ossl_exc_new(VALUE, const char *, ...);
/* Clear OpenSSL error queue. If dOSSL is set, rb_warn() them. */
void ossl_clear_error(void);