From 1b69659315d5332c3de3b41d68ea84b98e2b25bd Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 11 Aug 2007 16:18:11 +0000 Subject: r24330: Fix a 64-bit error (This used to be commit 30fd90346550f1c672edb51ab63b8139a6c4053e) --- source3/nsswitch/winbindd_ads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit