mirror of
https://github.com/samba-team/samba.git
synced 2025-03-08 04:58:40 +03:00
s4:lsa RPC - Fix type of variable "atype"
This is an unsigned 32bit integer.
This commit is contained in:
parent
7d5367fc99
commit
ae1e949810
@ -243,7 +243,8 @@ static NTSTATUS dcesrv_lsa_lookup_name(struct tevent_context *ev_ctx,
|
||||
struct dom_sid **sid, enum lsa_SidType *rtype,
|
||||
uint32_t *rid)
|
||||
{
|
||||
int ret, atype, i;
|
||||
int ret, i;
|
||||
uint32_t atype;
|
||||
struct ldb_message **res;
|
||||
const char * const attrs[] = { "objectSid", "sAMAccountType", NULL};
|
||||
const char *p;
|
||||
|
Loading…
x
Reference in New Issue
Block a user