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 dbf0813 commit 2e82c85Copy full SHA for 2e82c85
1 file changed
rust/cert-tools/src/cmds/pkcs12.rs
@@ -44,11 +44,11 @@ pub fn generate_truststore(args: GeneratePkcs12TruststoreArguments) -> Result<()
44
let certificate_sources = certificate_sources
45
.iter()
46
.map(|source| {
47
- let certificate = source.from_file().context(ReadCertificateSnafu {
+ let certificates_list = source.from_file().context(ReadCertificateSnafu {
48
path: source.path(),
49
})?;
50
51
- Ok((source, certificate))
+ Ok((source, certificates_list))
52
})
53
.collect::<Result<Vec<_>, Error>>()?;
54
0 commit comments