diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-08-11 16:18:11 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:29:30 -0500 |
commit | 1b69659315d5332c3de3b41d68ea84b98e2b25bd (patch) | |
tree | 2ce8d14a6aac2fb407835f18264461d8cfa605b8 /source3 | |
parent | 99a1f5a75c146dd16e7a893f9c5bc71fb0d20c6a (diff) | |
download | samba-1b69659315d5332c3de3b41d68ea84b98e2b25bd.tar.gz samba-1b69659315d5332c3de3b41d68ea84b98e2b25bd.tar.bz2 samba-1b69659315d5332c3de3b41d68ea84b98e2b25bd.zip |
r24330: Fix a 64-bit error
(This used to be commit 30fd90346550f1c672edb51ab63b8139a6c4053e)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/nsswitch/winbindd_ads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_ads.c b/source3/nsswitch/winbindd_ads.c index 227dae9d1c..65cc00bb97 100644 --- a/source3/nsswitch/winbindd_ads.c +++ b/source3/nsswitch/winbindd_ads.c @@ -914,7 +914,7 @@ static NTSTATUS lookup_groupmem(struct winbindd_domain *domain, POLICY_HND lsa_policy; DOM_SID *sid_mem_nocache = NULL; char **names_nocache = NULL; - uint32 *name_types_nocache = NULL; + enum lsa_SidType *name_types_nocache = NULL; char **domains_nocache = NULL; /* only needed for rpccli_lsa_lookup_sids */ uint32 num_nocache = 0; TALLOC_CTX *tmp_ctx = NULL; |