svn commit: samba r10188 - in branches/SAMBA_3_0/source/smbd: .

jra at samba.org jra at samba.org
Mon Sep 12 21:50:32 GMT 2005


Author: jra
Date: 2005-09-12 21:50:32 +0000 (Mon, 12 Sep 2005)
New Revision: 10188

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

Log:
64-bit warning fix.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/smbd/process.c


Changeset:
Modified: branches/SAMBA_3_0/source/smbd/process.c
===================================================================
--- branches/SAMBA_3_0/source/smbd/process.c	2005-09-12 21:47:44 UTC (rev 10187)
+++ branches/SAMBA_3_0/source/smbd/process.c	2005-09-12 21:50:32 UTC (rev 10188)
@@ -897,7 +897,7 @@
 		uint16 session_tag = (lp_security() == SEC_SHARE) ? UID_FIELD_INVALID : SVAL(inbuf,smb_uid);
 		connection_struct *conn = conn_find(SVAL(inbuf,smb_tid));
 
-		DEBUG(3,("switch message %s (pid %d) conn 0x%x\n",smb_fn_name(type),(int)pid,(unsigned int)conn));
+		DEBUG(3,("switch message %s (pid %d) conn 0x%lx\n",smb_fn_name(type),(int)pid,(unsigned long)conn));
 
 		smb_dump(smb_fn_name(type), 1, inbuf, size);
 		if(global_oplock_break) {



More information about the samba-cvs mailing list