diff options
author | Kazuki Yamaguchi <[email protected]> | 2021-07-18 18:04:25 +0900 |
---|---|---|
committer | Kazuki Yamaguchi <[email protected]> | 2021-07-18 18:04:50 +0900 |
commit | bd356c689918f53c282cd18eb48fb0ba028cc195 (patch) | |
tree | daf494778694f68fb61ae42259a078452c433a57 /ext/openssl/ossl_x509cert.c | |
parent | 3f1d8a18eac7d775e69b99f761e756f2abb60c12 (diff) |
[ruby/openssl] Strip trailing spaces
https://github.com/ruby/openssl/commit/68fa9c86f1
Diffstat (limited to 'ext/openssl/ossl_x509cert.c')
-rw-r--r-- | ext/openssl/ossl_x509cert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/ossl_x509cert.c b/ext/openssl/ossl_x509cert.c index 4884fc89a0..996f184170 100644 --- a/ext/openssl/ossl_x509cert.c +++ b/ext/openssl/ossl_x509cert.c @@ -741,7 +741,7 @@ load_chained_certificates_append(VALUE certificates, X509 *certificate) { arguments.certificate = certificate; rb_ensure(load_chained_certificates_append_push, (VALUE)&arguments, load_chained_certificate_append_ensure, (VALUE)&arguments); - + return arguments.certificates; } |