diff options
author | Jeremy Allison <jra@samba.org> | 2003-04-14 10:35:50 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-04-14 10:35:50 +0000 |
commit | 8403454aae4c84412705df70dd0e05702f22584f (patch) | |
tree | 1c7a9dda90712fd43df599ecf572b988d0fa9b26 /source3/include/smb_macros.h | |
parent | 10f2346810bbe4d81551994089e1a7d79955bb1f (diff) | |
download | samba-8403454aae4c84412705df70dd0e05702f22584f.tar.gz samba-8403454aae4c84412705df70dd0e05702f22584f.tar.bz2 samba-8403454aae4c84412705df70dd0e05702f22584f.zip |
Fix _smb_setlen to be non {} safe.
Jeremy.
(This used to be commit 7cb060e821691abf5d58d273cb523ee310656185)
Diffstat (limited to 'source3/include/smb_macros.h')
-rw-r--r-- | source3/include/smb_macros.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/smb_macros.h b/source3/include/smb_macros.h index 999850b8eb..477940445c 100644 --- a/source3/include/smb_macros.h +++ b/source3/include/smb_macros.h @@ -179,8 +179,8 @@ #define smb_offset(p,buf) (PTR_DIFF(p,buf+4) + chain_size) #define smb_len(buf) (PVAL(buf,3)|(PVAL(buf,2)<<8)|((PVAL(buf,1)&1)<<16)) -#define _smb_setlen(buf,len) buf[0] = 0; buf[1] = (len&0x10000)>>16; \ - buf[2] = (len&0xFF00)>>8; buf[3] = len&0xFF; +#define _smb_setlen(buf,len) do { buf[0] = 0; buf[1] = (len&0x10000)>>16; \ + buf[2] = (len&0xFF00)>>8; buf[3] = len&0xFF; } while (0) /******************************************************************* find the difference in milliseconds between two struct timeval |