If --delay-updates is specified with --remove-sent-files, delay

the MSG_SUCCESS messages until we actually move the files into
place at the end.
This commit is contained in:
Wayne Davison
2005-02-20 02:54:30 +00:00
parent 88b93c6159
commit cd6bececc1

View File

@@ -597,7 +597,9 @@ int recv_files(int f_in, struct file_list *flist, char *local_name,
cleanup_disable();
if (recv_ok) {
if (remove_sent_files) {
if (delay_updates && delayed_bits[i/8] & (1 << (i % 8)))
;
else if (remove_sent_files) {
SIVAL(numbuf, 0, i);
send_msg(MSG_SUCCESS, numbuf, 4);
}
@@ -654,6 +656,10 @@ int recv_files(int f_in, struct file_list *flist, char *local_name,
full_fname(fname),
safe_fname(partialptr));
} else {
if (remove_sent_files) {
SIVAL(numbuf, 0, i);
send_msg(MSG_SUCCESS,numbuf,4);
}
handle_partial_dir(partialptr,
PDIR_DELETE);
}