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

Write the correct block size (from zmodem_t or xmodem_t) to the DSZLOG file.

parent 3deb2b1b
No related branches found
No related tags found
No related merge requests found
......@@ -853,7 +853,7 @@ static int send_files(char** fname, uint fnames)
,cps
,errors
,flows
,xm.block_size
,mode&ZMODEM ? zm.block_size : xm.block_size
,path);
fflush(logfp);
}
......@@ -1176,7 +1176,7 @@ static int receive_files(char** fname_list, int fnames)
,file_bytes/t
,errors
,flows
,xm.block_size
,mode&ZMODEM ? zm.block_size : xm.block_size
,str
,serial_num);
fflush(logfp);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment