summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-10-21 15:22:30 +0000
committerLuke Leighton <lkcl@samba.org>1999-10-21 15:22:30 +0000
commit748627dbfb658f2241c438a1f1899c8b919ec612 (patch)
tree3574ba6ae23feadb7f0d91862a14353a7071a55c /source3
parent87d92a1f1182a6b4e4dbe91d7f574c7ac8aecb21 (diff)
downloadsamba-748627dbfb658f2241c438a1f1899c8b919ec612.tar.gz
samba-748627dbfb658f2241c438a1f1899c8b919ec612.tar.bz2
samba-748627dbfb658f2241c438a1f1899c8b919ec612.zip
use DEBUGADD instead of DEBUG: clears up some of the more verbose trash.
(This used to be commit 63431997eefb785d0c9fd357f6e58441b7e1733d)
Diffstat (limited to 'source3')
-rw-r--r--source3/include/byteorder.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/byteorder.h b/source3/include/byteorder.h
index 113de607fb..23e4f33049 100644
--- a/source3/include/byteorder.h
+++ b/source3/include/byteorder.h
@@ -212,7 +212,7 @@ it also defines lots of intermediate macros, just ignore those :-)
DEBUG(5,("%s%04x %s: ", \
tab_depth(depth), base,string)); \
if (charmode) print_asc(5, (unsigned char*)(outbuf), (len)); else \
- { int idx; for (idx = 0; idx < len; idx++) { DEBUG(5,("%02x ", (outbuf)[idx])); } } \
+ { int idx; for (idx = 0; idx < len; idx++) { DEBUGADD(5,("%02x ", (outbuf)[idx])); } } \
DEBUG(5,("\n"));
#define DBG_RW_PSVAL(charmode,string,depth,base,read,inbuf,outbuf,len) \
@@ -220,7 +220,7 @@ it also defines lots of intermediate macros, just ignore those :-)
DEBUG(5,("%s%04x %s: ", \
tab_depth(depth), base,string)); \
if (charmode) print_asc(5, (unsigned char*)(outbuf), 2*(len)); else \
- { int idx; for (idx = 0; idx < len; idx++) { DEBUG(5,("%04x ", (outbuf)[idx])); } } \
+ { int idx; for (idx = 0; idx < len; idx++) { DEBUGADD(5,("%04x ", (outbuf)[idx])); } } \
DEBUG(5,("\n"));
#define DBG_RW_PIVAL(charmode,string,depth,base,read,inbuf,outbuf,len) \
@@ -228,7 +228,7 @@ it also defines lots of intermediate macros, just ignore those :-)
DEBUG(5,("%s%04x %s: ", \
tab_depth(depth), base,string)); \
if (charmode) print_asc(5, (unsigned char*)(outbuf), 4*(len)); else \
- { int idx; for (idx = 0; idx < len; idx++) { DEBUG(5,("%08x ", (outbuf)[idx])); } } \
+ { int idx; for (idx = 0; idx < len; idx++) { DEBUGADD(5,("%08x ", (outbuf)[idx])); } } \
DEBUG(5,("\n"));
#define DBG_RW_CVAL(string,depth,base,read,inbuf,outbuf) \