Skip to content

Commit

Permalink
Merge pull request #472 from ruby/typo
Browse files Browse the repository at this point in the history
Fix typos [ci skip]
  • Loading branch information
rhenium authored Nov 3, 2021
2 parents c74362c + 708ebf2 commit 8193b73
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion History.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Bug fixes
[[GitHub #453]](https://github.com/ruby/openssl/pull/453)
* Fix misuse of input record separator in `OpenSSL::Buffering` where it was
for output.
* Fix wrong interger casting in `OpenSSL::PKey::EC#dsa_verify_asn1`.
* Fix wrong integer casting in `OpenSSL::PKey::EC#dsa_verify_asn1`.
[[GitHub #460]](https://github.com/ruby/openssl/pull/460)
* `extconf.rb` explicitly checks that OpenSSL's version number is 1.0.1 or
newer but also less than 3.0. Ruby/OpenSSL v2.1.x and v2.2.x will not support
Expand Down
2 changes: 1 addition & 1 deletion ext/openssl/ossl_ocsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ add_status_convert_time(VALUE obj)
* revocation, and must be one of OpenSSL::OCSP::REVOKED_STATUS_* constants.
* _revocation_time_ is the time when the certificate is revoked.
*
* _this_update_ and _next_update_ indicate the time at which ths status is
* _this_update_ and _next_update_ indicate the time at which the status is
* verified to be correct and the time at or before which newer information
* will be available, respectively. _next_update_ is optional.
*
Expand Down
2 changes: 1 addition & 1 deletion test/openssl/test_asn1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def test_decode_x509_certificate
str = +"\000"; str[0] = 0b00000110.chr
assert_equal(str, extv.value)

ext = extensions.value[0].value[2] # subjetKeyIdentifier
ext = extensions.value[0].value[2] # subjectKeyIdentifier
assert_equal(OpenSSL::ASN1::Sequence, ext.class)
assert_equal(2, ext.value.size)
assert_equal(OpenSSL::ASN1::ObjectId, ext.value[0].class)
Expand Down

0 comments on commit 8193b73

Please sign in to comment.