Skip to content

Commit

Permalink
Fix clippy errors
Browse files Browse the repository at this point in the history
Signed-off-by: Eugene Koira <[email protected]>
  • Loading branch information
eugkoira committed Apr 18, 2024
1 parent 7a16811 commit 1203ba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/eif_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ impl EifReader {

// Parse issuer into a BTreeMap
let mut issuer_name = BTreeMap::new();
for (_, e) in cert.issuer_name().entries().enumerate() {
for e in cert.issuer_name().entries() {
issuer_name.insert(
e.object().to_string(),
format!("{:?}", e.data()).replace(&['\"'][..], ""),
Expand Down

0 comments on commit 1203ba9

Please sign in to comment.