diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-08-26 20:54:13 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-09-11 18:46:05 +1000 |
commit | 4bf783d4d6693f927f5e7ef7a9855766c91983f2 (patch) | |
tree | f6cbe7bdc734997850ca85c6defd4c53a7bad148 /libgpo/gpo_ldap.c | |
parent | 6a0176b07da0b416bc9d750ddea92c612849597c (diff) | |
download | samba-4bf783d4d6693f927f5e7ef7a9855766c91983f2.tar.gz |
s3-auth Change type of num_sids to uint32_t
size_t is overkill here, and in struct security_token in the num_sids
is uint32_t.
This includes a change to the prototype of add_sid_to_array()
and add_sid_to_array_unique(), which has had a number of
consequnetial changes as I try to sort out all the callers using
a pointer to the number of sids.
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'libgpo/gpo_ldap.c')
-rw-r--r-- | libgpo/gpo_ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgpo/gpo_ldap.c b/libgpo/gpo_ldap.c index 367756d7a2f..26a091d18cb 100644 --- a/libgpo/gpo_ldap.c +++ b/libgpo/gpo_ldap.c @@ -627,7 +627,7 @@ ADS_STATUS ads_get_sid_token(ADS_STRUCT *ads, struct dom_sid *ad_token_sids; size_t num_ad_token_sids = 0; struct dom_sid *token_sids; - size_t num_token_sids = 0; + uint32_t num_token_sids = 0; NT_USER_TOKEN *new_token = NULL; int i; |