From b516a2abcadb4a58fe7058ddbb4e38f53a467426 Mon Sep 17 00:00:00 2001 From: Karolin Seeger Date: Fri, 9 Jan 2009 16:52:12 +0100 Subject: s3/net: Display error message if user does not exist. net rpc rights grant: Verify if the username can be resolved to a SID and display a proper error message if it does not. Otherwise users might think setting privileges worked fine, but in fact it does not. Karolin --- source3/utils/net_rpc_rights.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source3/utils/net_rpc_rights.c b/source3/utils/net_rpc_rights.c index 2bc5efe3cf..ddcfff3685 100644 --- a/source3/utils/net_rpc_rights.c +++ b/source3/utils/net_rpc_rights.c @@ -449,8 +449,11 @@ static NTSTATUS rpc_rights_grant_internal(struct net_context *c, } result = name_to_sid(pipe_hnd, mem_ctx, &sid, argv[0]); + if (NT_STATUS_EQUAL(result, NT_STATUS_NONE_MAPPED)) + result = NT_STATUS_NO_SUCH_USER; + if (!NT_STATUS_IS_OK(result)) - return result; + goto done; result = rpccli_lsa_open_policy2(pipe_hnd, mem_ctx, true, SEC_RIGHTS_MAXIMUM_ALLOWED, -- cgit