1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

s3-lsa Use sec_privilege_id() to lookup name to LUID

Signed-off-by: Andrew Tridgell <tridge@samba.org>
This commit is contained in:
Andrew Bartlett 2010-08-27 12:12:10 +10:00
parent 3c93d1ecbf
commit 33ce8633d6

View File

@ -2400,8 +2400,6 @@ NTSTATUS _lsa_LookupPrivValue(struct pipes_struct *p,
{
struct lsa_info *info = NULL;
const char *name = NULL;
struct lsa_LUIDAttribute priv_luid;
uint64_t mask;
/* find the connection policy handle. */
@ -2419,14 +2417,11 @@ NTSTATUS _lsa_LookupPrivValue(struct pipes_struct *p,
DEBUG(10,("_lsa_lookup_priv_value: name = %s\n", name));
if ( !se_priv_from_name( name, &mask ) )
r->out.luid->low = sec_privilege_id(name);
r->out.luid->high = 0;
if (r->out.luid->low == -1) {
return NT_STATUS_NO_SUCH_PRIVILEGE;
priv_luid = get_privilege_luid( &mask );
r->out.luid->low = priv_luid.luid.low;
r->out.luid->high = priv_luid.luid.high;
}
return NT_STATUS_OK;
}