Commit 662bdcd4 authored by Wayne Davison's avatar Wayne Davison

Make sure that allowed_lull will not be computed as 0 if

io_timeout is 1.
parent fef101a5
......@@ -1075,7 +1075,7 @@ void generate_files(int f_out, struct file_list *flist, char *local_name,
int need_retouch_dir_perms = 0;
int save_only_existing = only_existing;
int save_opt_ignore_existing = opt_ignore_existing;
int allowed_lull = read_batch ? 0 : io_timeout / 2;
int allowed_lull = read_batch ? 0 : (io_timeout + 1) / 2;
int lull_mod = allowed_lull * 5;
if (protocol_version >= 29) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment