X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/264042760bd909eeca281dc8c937357e98bf6bf8..ab3d6c6025162c19c082602aa1e488f22e40d392:/fileio.c diff --git a/fileio.c b/fileio.c index a1b68d1c..52e34bda 100644 --- a/fileio.c +++ b/fileio.c @@ -107,7 +107,7 @@ int write_file(int f,char *buf,size_t len) while (len > 0) { int r1; - if (sparse_files) { + if (sparse_files > 0) { int len1 = MIN(len, SPARSE_WRITE_SIZE); r1 = write_sparse(f, buf, len1); } else {