Skip to content

Commit 100d575

Browse files
committed
Appease clippy explicit-auto-deref
1 parent f481c0b commit 100d575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/verify_cert.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ pub fn build_chain(
8181

8282
loop_while_non_fatal_error(intermediate_certs, |cert_der| {
8383
let potential_issuer =
84-
cert::parse_cert(untrusted::Input::from(*cert_der), EndEntityOrCa::Ca(cert))?;
84+
cert::parse_cert(untrusted::Input::from(cert_der), EndEntityOrCa::Ca(cert))?;
8585

8686
if potential_issuer.subject != cert.issuer {
8787
return Err(Error::UnknownIssuer);

0 commit comments

Comments
 (0)