DPRINTF->TRACE files/smb.c

Tony Lambregts tony_lambregts at telusplanet.net
Fri Mar 14 11:11:37 CST 2003


Most of the DPRINTF's in this file are used for dumping but not the ones in 
the patch <g>

Change Log: Replace DPRINTF with TRACE

Files changed: files/smb.c

-- 

Tony Lambregts


-------------- next part --------------
Index: smb.c
===================================================================
RCS file: /home/wine/wine/files/smb.c,v
retrieving revision 1.16
diff -u -r1.16 smb.c
--- smb.c	24 Jan 2003 00:54:58 -0000	1.16
+++ smb.c	14 Mar 2003 17:17:09 -0000
@@ -934,8 +934,8 @@
 
     TRACE("response, %d args: ",pcount);
     for(i=0; i<pcount; i++)
-        DPRINTF("%04x ",SMB_PARAM(rx.buffer,i));
-    DPRINTF("\n");
+        TRACE("%04x ",SMB_PARAM(rx.buffer,i));
+    TRACE("\n");
 
     *file_id = SMB_PARAM(rx.buffer,0);
 
@@ -996,8 +996,8 @@
 
     TRACE("response, %d args: ",n);
     for(i=0; i<n; i++)
-        DPRINTF("%04x ",SMB_PARAM(rx.buffer,i));
-    DPRINTF("\n");
+        TRACE("%04x ",SMB_PARAM(rx.buffer,i));
+    TRACE("\n");
 
     n = SMB_PARAM(rx.buffer,5) - 3;
     if(n>count)


More information about the wine-patches mailing list