Index: libsmb/clirap2.c =================================================================== --- libsmb/clirap2.c (revision 9224) +++ libsmb/clirap2.c (working copy) @@ -97,7 +97,7 @@ #define PUTSTRINGF(p,s,l) do {\ push_ascii(p,s?s:"",l,STR_TERMINATE);\ p += l;\ - } while (0) + } while(0) /* put string pointer at p, supplying offset o from rdata r, store */ /* dword offset at p, increment p by 4 and o by length of s. This */ /* means on the first call, you must calc the offset yourself! */ @@ -107,7 +107,7 @@ PUTDWORD(p,o);\ o += strlen(s) + 1;\ } else PUTDWORD(p,0);\ - }while(0); + } while(0) /* get asciiz string s from p, increment p past string */ #define GETSTRING(p,s) do {\ pull_ascii_pstring(s,p);\