summaryrefslogtreecommitdiff
path: root/source3/include/smb.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-08-10 20:12:53 +0000
committerJeremy Allison <jra@samba.org>1998-08-10 20:12:53 +0000
commit17fb3a2304d3f9eaa314c90b476d153b5f333f31 (patch)
tree6699f86ad800a503d1e41c4b7af7db3ca40a1755 /source3/include/smb.h
parent670c6addc322e69b86975fc4024c88a885b63d9f (diff)
downloadsamba-17fb3a2304d3f9eaa314c90b476d153b5f333f31.tar.gz
samba-17fb3a2304d3f9eaa314c90b476d153b5f333f31.tar.bz2
samba-17fb3a2304d3f9eaa314c90b476d153b5f333f31.zip
Makefile.in: Fixed make clean bug with CVS directory in bin/.
include/smb.h: Fixed bugs in Debug macro's with SGI compiler. smbd/trans2.c: Fixed bug reported by Zoltan Palmai <ZSPA@chevron.com> PR#8903 where get_lanman2_dir_entry() could return a mangled name as a resume key and call_trans2findnext() wasn't doing the same. Jeremy. (This used to be commit 9d010e721c27af1d9498fd1e147993ba8ac8b41e)
Diffstat (limited to 'source3/include/smb.h')
-rw-r--r--source3/include/smb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h
index f8a055ad48..bc44fbdd2b 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -144,10 +144,10 @@ BOOL dbgtext();
#define DEBUG( level, body ) \
((DEBUGLEVEL>=(level) && \
dbghdr(level, FILE_MACRO, FUNCTION_MACRO, (__LINE__)))? \
- (void)dbgtext body:0)
+ (void)(dbgtext body) : (void)0)
#define DEBUGADD( level, body ) \
- (DEBUGLEVEL>=(level)?(void)dbgtext body:0);
+ (DEBUGLEVEL>=(level)?(void)(dbgtext body) : (void)0);
/* End Debugging code section.
* -------------------------------------------------------------------------- **