diff options
author | Luke Leighton <lkcl@samba.org> | 1998-11-11 19:22:08 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-11-11 19:22:08 +0000 |
commit | abdc9d790b7d27b70aaf88451f5c82c99c94ca6e (patch) | |
tree | 66878a2681953bfd545519bd5cbca1357108c98e /source/include/byteorder.h | |
parent | 74530677d5301abd2da5bcdcb1fde6e6f903ad70 (diff) | |
download | samba-abdc9d790b7d27b70aaf88451f5c82c99c94ca6e.tar.gz samba-abdc9d790b7d27b70aaf88451f5c82c99c94ca6e.tar.xz samba-abdc9d790b7d27b70aaf88451f5c82c99c94ca6e.zip |
clearing up security descriptor
Diffstat (limited to 'source/include/byteorder.h')
-rw-r--r-- | source/include/byteorder.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source/include/byteorder.h b/source/include/byteorder.h index 3371fd24cbc..2a615e9ddeb 100644 --- a/source/include/byteorder.h +++ b/source/include/byteorder.h @@ -205,7 +205,7 @@ it also defines lots of intermediate macros, just ignore those :-) #define DBG_RW_PCVAL(charmode,string,depth,base,read,inbuf,outbuf,len) \ RW_PCVAL(read,inbuf,outbuf,len) \ DEBUG(5,("%s%04x %s: ", \ - tab_depth(depth), PTR_DIFF(inbuf,base),string)); \ + 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])); } } \ DEBUG(5,("\n")); @@ -213,7 +213,7 @@ it also defines lots of intermediate macros, just ignore those :-) #define DBG_RW_PSVAL(charmode,string,depth,base,read,inbuf,outbuf,len) \ RW_PSVAL(read,inbuf,outbuf,len) \ DEBUG(5,("%s%04x %s: ", \ - tab_depth(depth), PTR_DIFF(inbuf,base),string)); \ + 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])); } } \ DEBUG(5,("\n")); @@ -221,7 +221,7 @@ it also defines lots of intermediate macros, just ignore those :-) #define DBG_RW_PIVAL(charmode,string,depth,base,read,inbuf,outbuf,len) \ RW_PIVAL(read,inbuf,outbuf,len) \ DEBUG(5,("%s%04x %s: ", \ - tab_depth(depth), PTR_DIFF(inbuf,base),string)); \ + 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])); } } \ DEBUG(5,("\n")); @@ -229,15 +229,15 @@ it also defines lots of intermediate macros, just ignore those :-) #define DBG_RW_CVAL(string,depth,base,read,inbuf,outbuf) \ RW_CVAL(read,inbuf,outbuf,0) \ DEBUG(5,("%s%04x %s: %02x\n", \ - tab_depth(depth), PTR_DIFF(inbuf,base), string, outbuf)); + tab_depth(depth), base, string, outbuf)); #define DBG_RW_SVAL(string,depth,base,read,inbuf,outbuf) \ RW_SVAL(read,inbuf,outbuf,0) \ DEBUG(5,("%s%04x %s: %04x\n", \ - tab_depth(depth), PTR_DIFF(inbuf,base), string, outbuf)); + tab_depth(depth), base, string, outbuf)); #define DBG_RW_IVAL(string,depth,base,read,inbuf,outbuf) \ RW_IVAL(read,inbuf,outbuf,0) \ DEBUG(5,("%s%04x %s: %08x\n", \ - tab_depth(depth), PTR_DIFF(inbuf,base), string, outbuf)); + tab_depth(depth), base, string, outbuf)); |