Skip to content

Commit

Permalink
Bump openssl from 0.10.55 to 0.10.62
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowone committed Dec 30, 2023
1 parent 7236109 commit 32f662a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion stdlib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ termios = "0.3.3"
gethostname = "0.2.3"
socket2 = { version = "0.4.4", features = ["all"] }
dns-lookup = "1.0.8"
openssl = { version = "0.10.55", optional = true }
openssl = { version = "0.10.62", optional = true }
openssl-sys = { version = "0.9.80", optional = true }
openssl-probe = { version = "0.1.5", optional = true }
foreign-types-shared = { version = "0.1.1", optional = true }
Expand Down
3 changes: 1 addition & 2 deletions stdlib/src/ssl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -703,9 +703,8 @@ mod _ssl {
let certs = self
.ctx()
.cert_store()
.objects()
.all_certificates()
.iter()
.filter_map(|obj| obj.x509())
.map(|cert| cert_to_py(vm, cert, binary_form))
.collect::<Result<Vec<_>, _>>()?;
Ok(certs)
Expand Down

0 comments on commit 32f662a

Please sign in to comment.