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

metze at samba.org metze at samba.org
Fri Nov 19 15:43:35 GMT 2004


Author: metze
Date: 2004-11-19 15:43:35 +0000 (Fri, 19 Nov 2004)
New Revision: 3876

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

Log:
fix compiler warnings

metze

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


Changeset:
Modified: branches/SAMBA_4_0/source/auth/auth.c
===================================================================
--- branches/SAMBA_4_0/source/auth/auth.c	2004-11-19 13:26:17 UTC (rev 3875)
+++ branches/SAMBA_4_0/source/auth/auth.c	2004-11-19 15:43:35 UTC (rev 3876)
@@ -89,7 +89,7 @@
 	
 	DEBUG(5, ("auth_context challenge created by %s\n", challenge_set_by));
 	DEBUG(5, ("challenge is: \n"));
-	dump_data(5, (const char *)auth_context->challenge.data, auth_context->challenge.length);
+	dump_data(5, auth_context->challenge.data, auth_context->challenge.length);
 	
 	SMB_ASSERT(auth_context->challenge.length == 8);
 
@@ -188,7 +188,7 @@
 					auth_context->challenge_set_by));
 
 	DEBUG(10, ("challenge is: \n"));
-	dump_data(5, (const char *)auth_context->challenge.data, auth_context->challenge.length);
+	dump_data(5, auth_context->challenge.data, auth_context->challenge.length);
 
 #ifdef DEBUG_PASSWORD
 	DEBUG(100, ("user_info has passwords of length %d and %d\n", 



More information about the samba-cvs mailing list