mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
netapi: add samr_rid_to_priv_level().
Guenther
(This used to be commit 51afae4999
)
This commit is contained in:
parent
ff21cceecc
commit
c750f8c400
@ -675,6 +675,21 @@ static NTSTATUS libnetapi_samr_lookup_user(TALLOC_CTX *mem_ctx,
|
||||
/****************************************************************
|
||||
****************************************************************/
|
||||
|
||||
static uint32_t samr_rid_to_priv_level(uint32_t rid)
|
||||
{
|
||||
switch (rid) {
|
||||
case DOMAIN_RID_ADMINISTRATOR:
|
||||
return USER_PRIV_ADMIN;
|
||||
case DOMAIN_RID_GUEST:
|
||||
return USER_PRIV_GUEST;
|
||||
default:
|
||||
return USER_PRIV_USER;
|
||||
}
|
||||
}
|
||||
|
||||
/****************************************************************
|
||||
****************************************************************/
|
||||
|
||||
static uint32_t samr_acb_flags_to_netapi_flags(uint32_t acb)
|
||||
{
|
||||
uint32_t fl = UF_SCRIPT; /* god knows why */
|
||||
|
Loading…
Reference in New Issue
Block a user