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