1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-23 20:59:10 +03:00

Display a nice error message if the user%password specified for net rpc

join does not have administrator privileges.
This commit is contained in:
Tim Potter
-
parent 60eb4dc7b1
commit af24b1036c

View File

@ -141,6 +141,14 @@ int net_rpc_join(int argc, const char **argv)
if (!NT_STATUS_IS_OK(result) &&
!NT_STATUS_EQUAL(result, NT_STATUS_USER_EXISTS)) {
d_printf("Create of workstation account failed\n");
/* If NT_STATUS_ACCESS_DENIED then we have a valid
username/password combo but the user does not have
administrator access. */
if (NT_STATUS_V(result) == NT_STATUS_V(NT_STATUS_ACCESS_DENIED))
d_printf("User specified does not have administrator privileges\n");
goto done;
}
@ -286,5 +294,3 @@ done:
return retval;
}