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/lib | |
parent | 3f1d8a18eac7d775e69b99f761e756f2abb60c12 (diff) |
[ruby/openssl] Strip trailing spaces
https://github.com/ruby/openssl/commit/68fa9c86f1
Diffstat (limited to 'ext/openssl/lib')
-rw-r--r-- | ext/openssl/lib/openssl/x509.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/lib/openssl/x509.rb b/ext/openssl/lib/openssl/x509.rb index 367a899e21..448941f75e 100644 --- a/ext/openssl/lib/openssl/x509.rb +++ b/ext/openssl/lib/openssl/x509.rb @@ -338,7 +338,7 @@ module OpenSSL q.text 'not_after='; q.pp self.not_after } end - + def self.load_file(path) load(File.binread(path)) end |