1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

pdb: Use "sid_compose" where appropriate

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2018-10-05 12:12:39 +02:00 committed by Jeremy Allison
parent e7d3678ddb
commit 2329518f32

View File

@ -220,8 +220,7 @@ static NTSTATUS add_builtin_guests(struct security_token *token,
/*
* First check the local GUEST account.
*/
sid_copy(&tmp_sid, get_global_sam_sid());
sid_append_rid(&tmp_sid, DOMAIN_RID_GUEST);
sid_compose(&tmp_sid, get_global_sam_sid(), DOMAIN_RID_GUEST);
if (nt_token_check_sid(&tmp_sid, token)) {
status = add_sid_to_array_unique(token,
@ -237,8 +236,7 @@ static NTSTATUS add_builtin_guests(struct security_token *token,
/*
* First check the local GUESTS group.
*/
sid_copy(&tmp_sid, get_global_sam_sid());
sid_append_rid(&tmp_sid, DOMAIN_RID_GUESTS);
sid_compose(&tmp_sid, get_global_sam_sid(), DOMAIN_RID_GUESTS);
if (nt_token_check_sid(&tmp_sid, token)) {
status = add_sid_to_array_unique(token,