We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f481c0b commit 100d575Copy full SHA for 100d575
src/verify_cert.rs
@@ -81,7 +81,7 @@ pub fn build_chain(
81
82
loop_while_non_fatal_error(intermediate_certs, |cert_der| {
83
let potential_issuer =
84
- cert::parse_cert(untrusted::Input::from(*cert_der), EndEntityOrCa::Ca(cert))?;
+ cert::parse_cert(untrusted::Input::from(cert_der), EndEntityOrCa::Ca(cert))?;
85
86
if potential_issuer.subject != cert.issuer {
87
return Err(Error::UnknownIssuer);
0 commit comments