Make sure that allowed_lull will not be computed as 0 if
authorWayne Davison <wayned@samba.org>
Sun, 27 Feb 2005 18:09:17 +0000 (18:09 +0000)
committerWayne Davison <wayned@samba.org>
Sun, 27 Feb 2005 18:09:17 +0000 (18:09 +0000)
io_timeout is 1.

generator.c

index 68289729e2f6e182cd35b3052a7ca8c3964a43a9..22a8dbadeba9cbb6f623fc7b29a2ccd4bd2c563d 100644 (file)
@@ -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) {