1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

r16683: Fix bug #3900 reported by jason@ncac.gwu.edu.

Jeremy.
This commit is contained in:
Jeremy Allison 2006-06-29 17:07:21 +00:00 committed by Gerald (Jerry) Carter
parent 1cd9a0ef83
commit 8c7e40f2a4

View File

@ -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;
}