mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
parent
1cd9a0ef83
commit
8c7e40f2a4
@ -3796,7 +3796,7 @@ static NTSTATUS ldapsam_lookup_rids(struct pdb_methods *methods,
|
||||
continue;
|
||||
}
|
||||
|
||||
type = atol(attr);
|
||||
type = (enum SID_NAME_USE)atol(attr);
|
||||
|
||||
/* Consistency checks */
|
||||
if ((is_builtin && (type != SID_NAME_ALIAS)) ||
|
||||
@ -4560,7 +4560,7 @@ static BOOL ldapsam_sid_to_id(struct pdb_methods *methods,
|
||||
}
|
||||
|
||||
id->gid = strtoul(gid_str, NULL, 10);
|
||||
*type = strtoul(value, NULL, 10);
|
||||
*type = (enum SID_NAME_USE)strtoul(value, NULL, 10);
|
||||
ret = True;
|
||||
goto done;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user