If --delay-updates is specified with --remove-sent-files, delay
authorWayne Davison <wayned@samba.org>
Sun, 20 Feb 2005 02:54:30 +0000 (02:54 +0000)
committerWayne Davison <wayned@samba.org>
Sun, 20 Feb 2005 02:54:30 +0000 (02:54 +0000)
the MSG_SUCCESS messages until we actually move the files into
place at the end.

receiver.c

index 48937f6..719a58b 100644 (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);
                                }