svn commit: samba r24330 - in branches: SAMBA_3_2/source/nsswitch SAMBA_3_2_0/source/nsswitch

vlendec at samba.org vlendec at samba.org
Sat Aug 11 16:18:12 GMT 2007


Author: vlendec
Date: 2007-08-11 16:18:11 +0000 (Sat, 11 Aug 2007)
New Revision: 24330

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=24330

Log:
Fix a 64-bit error

Modified:
   branches/SAMBA_3_2/source/nsswitch/winbindd_ads.c
   branches/SAMBA_3_2_0/source/nsswitch/winbindd_ads.c


Changeset:
Modified: branches/SAMBA_3_2/source/nsswitch/winbindd_ads.c
===================================================================
--- branches/SAMBA_3_2/source/nsswitch/winbindd_ads.c	2007-08-11 16:15:39 UTC (rev 24329)
+++ branches/SAMBA_3_2/source/nsswitch/winbindd_ads.c	2007-08-11 16:18:11 UTC (rev 24330)
@@ -914,7 +914,7 @@
         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;

Modified: branches/SAMBA_3_2_0/source/nsswitch/winbindd_ads.c
===================================================================
--- branches/SAMBA_3_2_0/source/nsswitch/winbindd_ads.c	2007-08-11 16:15:39 UTC (rev 24329)
+++ branches/SAMBA_3_2_0/source/nsswitch/winbindd_ads.c	2007-08-11 16:18:11 UTC (rev 24330)
@@ -914,7 +914,7 @@
         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;



More information about the samba-cvs mailing list