Fix a typo in the unix daemon debug (#1822)

Signed-off-by: David Mulder <dmulder@samba.org>
This commit is contained in:
David Mulder 2023-07-09 18:58:35 -06:00 committed by GitHub
parent 4dd0e59246
commit 76b868b4d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -692,7 +692,7 @@ async fn main() -> ExitCode {
let task_listener = match UnixListener::bind(cfg.task_sock_path.as_str()) { let task_listener = match UnixListener::bind(cfg.task_sock_path.as_str()) {
Ok(l) => l, Ok(l) => l,
Err(_e) => { Err(_e) => {
error!("Failed to bind UNIX socket {}", cfg.sock_path.as_str()); error!("Failed to bind UNIX socket {}", cfg.task_sock_path.as_str());
return ExitCode::FAILURE return ExitCode::FAILURE
} }
}; };