mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
Fix a typo in the unix daemon debug (#1822)
Signed-off-by: David Mulder <dmulder@samba.org>
This commit is contained in:
parent
4dd0e59246
commit
76b868b4d3
|
@ -692,7 +692,7 @@ async fn main() -> ExitCode {
|
|||
let task_listener = match UnixListener::bind(cfg.task_sock_path.as_str()) {
|
||||
Ok(l) => l,
|
||||
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
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue