svn commit: samba r3970 - in branches/SAMBA_4_0/source/auth: .

metze at samba.org metze at samba.org
Thu Nov 25 19:59:08 GMT 2004


Author: metze
Date: 2004-11-25 19:59:08 +0000 (Thu, 25 Nov 2004)
New Revision: 3970

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

Log:
fix compiler warning

metze

Modified:
   branches/SAMBA_4_0/source/auth/auth_winbind.c


Changeset:
Modified: branches/SAMBA_4_0/source/auth/auth_winbind.c
===================================================================
--- branches/SAMBA_4_0/source/auth/auth_winbind.c	2004-11-25 19:31:53 UTC (rev 3969)
+++ branches/SAMBA_4_0/source/auth/auth_winbind.c	2004-11-25 19:59:08 UTC (rev 3970)
@@ -35,7 +35,7 @@
 		NTSTATUS status;
 		DATA_BLOB blob;
 		blob.length = len - 4;
-		blob.data = ((char *)response->extra_data) + 4;
+		blob.data = (void *)(((char *)response->extra_data) + 4);
 		
 		status = ndr_pull_struct_blob(&blob, mem_ctx, info3,
 					      (ndr_pull_flags_fn_t)ndr_pull_netr_SamInfo3);



More information about the samba-cvs mailing list