From: Jeremy Allison Date: Thu, 29 Jun 2006 17:07:21 +0000 (+0000) Subject: r16683: Fix bug #3900 reported by jason@ncac.gwu.edu. X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~2701 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=8c7e40f2a469df34aff0e63270a78e669d240b59;p=samba.git r16683: Fix bug #3900 reported by jason@ncac.gwu.edu. Jeremy. --- diff --git a/source/passdb/pdb_ldap.c b/source/passdb/pdb_ldap.c index 839822843b7..4d0c84b5433 100644 --- a/source/passdb/pdb_ldap.c +++ b/source/passdb/pdb_ldap.c @@ -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; }