diff options
-rw-r--r-- | source/auth/auth_domain.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/auth/auth_domain.c b/source/auth/auth_domain.c index 256c4532edc..7dca5914f0b 100644 --- a/source/auth/auth_domain.c +++ b/source/auth/auth_domain.c @@ -175,6 +175,11 @@ static NTSTATUS connect_to_domain_password_server(struct cli_state **cli, &dest_ip, 0, "IPC$", "IPC", "", "", "",0, retry); if (!NT_STATUS_IS_OK(result)) { + /* map to something more useful */ + if (NT_STATUS_EQUAL(result, NT_STATUS_UNSUCCESSFUL)) { + result = NT_STATUS_NO_LOGON_SERVERS; + } + release_server_mutex(); return result; } |