From 662bdcd4ac65f2e6220615f7fd10e90d248e0596 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sun, 27 Feb 2005 18:09:17 +0000 Subject: [PATCH] Make sure that allowed_lull will not be computed as 0 if io_timeout is 1. --- generator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator.c b/generator.c index 68289729..22a8dbad 100644 --- a/generator.c +++ b/generator.c @@ -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) { -- 2.34.1