style: cargo fmt

This commit is contained in:
Waldemar Heinze 2022-11-24 09:36:32 +01:00
parent 3077890c22
commit dbd8654a7a

View File

@ -212,8 +212,12 @@ where
config.ldaps_options.port config.ldaps_options.port
); );
server_builder.and_then(|s| { server_builder.and_then(|s| {
s.bind("ldaps", (config.host.clone(), config.ldaps_options.port), tls_binder) s.bind(
.with_context(|| format!("while binding to the port {}", config.ldaps_options.port)) "ldaps",
(config.host.clone(), config.ldaps_options.port),
tls_binder,
)
.with_context(|| format!("while binding to the port {}", config.ldaps_options.port))
}) })
} else { } else {
server_builder server_builder