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:
parent
e7d3678ddb
commit
2329518f32
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user