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 b5faf6d commit a58677cCopy full SHA for a58677c
crates/stackable-certs/src/ca/mod.rs
@@ -342,11 +342,10 @@ where
342
let sans = subject_alterative_dns_names
343
.into_iter()
344
.map(|dns_name| {
345
- let ia5_dns_name = Ia5String::new(dns_name).context(
346
- ParseSubjectAlternativeDnsNameSnafu {
+ let ia5_dns_name =
+ Ia5String::new(dns_name).context(ParseSubjectAlternativeDnsNameSnafu {
347
subject_alternative_dns_name: dns_name.to_string(),
348
- },
349
- )?;
+ })?;
350
Ok(GeneralName::DnsName(ia5_dns_name))
351
})
352
.collect::<Result<Vec<_>, Error>>()?;
0 commit comments