summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-08-11 16:18:11 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:29:30 -0500
commit1b69659315d5332c3de3b41d68ea84b98e2b25bd (patch)
tree2ce8d14a6aac2fb407835f18264461d8cfa605b8
parent99a1f5a75c146dd16e7a893f9c5bc71fb0d20c6a (diff)
downloadsamba-1b69659315d5332c3de3b41d68ea84b98e2b25bd.tar.gz
samba-1b69659315d5332c3de3b41d68ea84b98e2b25bd.tar.bz2
samba-1b69659315d5332c3de3b41d68ea84b98e2b25bd.zip
r24330: Fix a 64-bit error
(This used to be commit 30fd90346550f1c672edb51ab63b8139a6c4053e)
-rw-r--r--source3/nsswitch/winbindd_ads.c2
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;