mirror of
https://github.com/samba-team/samba.git
synced 2025-12-23 00:23:53 +03:00
Fix wkssvc callers.
Guenther
This commit is contained in:
@@ -89,14 +89,12 @@ WERROR NetJoinDomain(const char *server_name,
|
||||
server_name, domain_name,
|
||||
account_ou, Account,
|
||||
&encrypted_password,
|
||||
join_flags);
|
||||
join_flags, &werr);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
werr = ntstatus_to_werror(status);
|
||||
goto done;
|
||||
}
|
||||
|
||||
werr = WERR_OK;
|
||||
|
||||
done:
|
||||
if (cli) {
|
||||
cli_set_timeout(cli, old_timeout);
|
||||
@@ -166,14 +164,13 @@ WERROR NetUnjoinDomain(const char *server_name,
|
||||
server_name,
|
||||
account,
|
||||
&encrypted_password,
|
||||
unjoin_flags);
|
||||
unjoin_flags,
|
||||
&werr);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
werr = ntstatus_to_werror(status);
|
||||
goto done;
|
||||
}
|
||||
|
||||
werr = WERR_OK;
|
||||
|
||||
done:
|
||||
if (cli) {
|
||||
cli_set_timeout(cli, old_timeout);
|
||||
|
||||
Reference in New Issue
Block a user