Skip to content
Snippets Groups Projects
Commit c5db76d8 authored by rswindell's avatar rswindell
Browse files

Uses C char constants ('\r' and '\n') instead of macros CR and LF (no longer

defined in smbdefs.h).
parent d3b5e515
No related branches found
No related tags found
No related merge requests found
......@@ -123,9 +123,9 @@ char HUGE16* SMBCALL smb_getmsgtxt(smb_t* smb, smbmsg_t* msg, ulong mode)
l--;
while(l && buf[l]==0) l--;
l++;
*(buf+l)=CR;
*(buf+l)='\r'; /* CR */
l++;
*(buf+l)=LF;
*(buf+l)='\n'; /* LF */
l++;
*(buf+l)=0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment