Commit ff0c27c9 authored by Wayne Davison's avatar Wayne Davison

Files with the same size should also be skipped by --append.

parent d1d0a705
......@@ -1578,7 +1578,7 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx,
goto cleanup;
}
if (append_mode > 0 && sx.st.st_size > F_LENGTH(file))
if (append_mode > 0 && sx.st.st_size >= F_LENGTH(file))
goto cleanup;
if (fnamecmp_type <= FNAMECMP_BASIS_DIR_HIGH)
......
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