1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r15076: give the correct return code

metze
(This used to be commit 92a0663812)
This commit is contained in:
Stefan Metzmacher 2006-04-13 12:13:40 +00:00 committed by Gerald (Jerry) Carter
parent 732027b87a
commit 0bfa0d115c

View File

@ -264,7 +264,7 @@ _PUBLIC_ NTSTATUS sidmap_sid_to_unixgid(struct sidmap_context *sidmap,
DEBUG(0,("unixName '%s' for sid %s does not exist as a local group\n",
s, dom_sid_string(tmp_ctx, sid)));
talloc_free(tmp_ctx);
return NT_STATUS_NO_SUCH_USER;
return NT_STATUS_NO_SUCH_GROUP;
}
*gid = grp->gr_gid;
talloc_free(tmp_ctx);
@ -278,7 +278,7 @@ _PUBLIC_ NTSTATUS sidmap_sid_to_unixgid(struct sidmap_context *sidmap,
if (!grp) {
DEBUG(0,("sAMAccountName '%s' for sid %s does not exist as a local group\n", s, dom_sid_string(tmp_ctx, sid)));
talloc_free(tmp_ctx);
return NT_STATUS_NO_SUCH_USER;
return NT_STATUS_NO_SUCH_GROUP;
}
*gid = grp->gr_gid;
talloc_free(tmp_ctx);