Fixed a failing hunk.
[rsync/rsync-patches.git] / remove-sent-files.diff
index c400b43..5d1afd1 100644 (file)
@@ -4,9 +4,9 @@ command before "make":
     make proto
 
 
---- orig/io.c  2004-08-02 02:44:26
-+++ io.c       2004-07-03 20:17:10
-@@ -240,6 +240,14 @@ static void read_msg_fd(void)
+--- orig/io.c  2005-01-14 18:30:18
++++ io.c       2005-01-10 10:49:17
+@@ -243,6 +243,14 @@ static void read_msg_fd(void)
                read_loop(fd, buf, 4);
                redo_list_add(IVAL(buf,0));
                break;
@@ -21,7 +21,7 @@ command before "make":
        case MSG_INFO:
        case MSG_ERROR:
        case MSG_LOG:
-@@ -673,6 +681,16 @@ static int readfd_unbuffered(int fd, cha
+@@ -676,6 +684,16 @@ static int readfd_unbuffered(int fd, cha
                        read_loop(fd, iobuf_in, remaining);
                        iobuf_in_ndx = 0;
                        break;
@@ -38,7 +38,7 @@ command before "make":
                case MSG_INFO:
                case MSG_ERROR:
                        if (remaining >= sizeof line) {
---- orig/main.c        2004-09-29 17:58:26
+--- orig/main.c        2005-01-14 18:30:18
 +++ main.c     2004-08-13 08:24:23
 @@ -42,6 +42,7 @@ extern int list_only;
  extern int local_server;
@@ -48,7 +48,7 @@ command before "make":
  extern int orig_umask;
  extern int copy_links;
  extern int keep_dirlinks;
-@@ -621,6 +622,8 @@ void start_server(int f_in, int f_out, i
+@@ -648,6 +649,8 @@ void start_server(int f_in, int f_out, i
  
        if (am_sender) {
                keep_dirlinks = 0; /* Must be disabled on the sender. */
@@ -57,7 +57,7 @@ command before "make":
  
                recv_exclude_list(f_in);
                if (cvs_exclude)
-@@ -702,6 +705,9 @@ int client_run(int f_in, int f_out, pid_
+@@ -732,6 +735,9 @@ int client_run(int f_in, int f_out, pid_
                exit_cleanup(status);
        }
  
@@ -67,9 +67,9 @@ command before "make":
        if (argc == 0)
                list_only = 1;
  
---- orig/options.c     2004-09-23 17:42:07
-+++ options.c  2004-07-16 20:09:54
-@@ -87,8 +87,10 @@ int size_only = 0;
+--- orig/options.c     2005-01-15 04:40:15
++++ options.c  2005-01-10 10:46:47
+@@ -88,8 +88,10 @@ int daemon_bwlimit = 0;
  int bwlimit = 0;
  size_t bwlimit_writemax = 0;
  int delete_after = 0;
@@ -78,49 +78,36 @@ command before "make":
  int opt_ignore_existing = 0;
 +int need_messages_from_generator = 0;
  int max_delete = 0;
+ OFF_T max_size = 0;
  int ignore_errors = 0;
- int modify_window = 0;
-@@ -266,6 +268,7 @@ void usage(enum logcode F)
+@@ -273,6 +275,7 @@ void usage(enum logcode F)
    rprintf(F,"     --delete                delete files that don't exist on the sending side\n");
    rprintf(F,"     --delete-excluded       also delete excluded files on the receiving side\n");
    rprintf(F,"     --delete-after          receiver deletes after transferring, not before\n");
 +  rprintf(F,"     --delete-sent-files     updated/sent files are removed from sending side\n");
    rprintf(F,"     --ignore-errors         delete even if there are I/O errors\n");
    rprintf(F,"     --max-delete=NUM        don't delete more than NUM files\n");
-   rprintf(F,"     --partial               keep partially transferred files\n");
-@@ -317,8 +320,8 @@ void usage(enum logcode F)
- }
- enum {OPT_VERSION = 1000, OPT_SENDER, OPT_EXCLUDE, OPT_EXCLUDE_FROM,
--      OPT_DELETE_AFTER, OPT_DELETE_EXCLUDED, OPT_LINK_DEST,
--      OPT_INCLUDE, OPT_INCLUDE_FROM, OPT_MODIFY_WINDOW,
-+      OPT_DELETE_AFTER, OPT_DELETE_EXCLUDED, OPT_DELETE_SENT_FILES,
-+      OPT_INCLUDE, OPT_INCLUDE_FROM, OPT_LINK_DEST, OPT_MODIFY_WINDOW,
-       OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_TIMEOUT,
-       OPT_REFUSED_BASE = 9000};
-@@ -337,6 +340,7 @@ static struct poptOption long_options[] 
+   rprintf(F,"     --max-size=SIZE         don't transfer any file larger than SIZE\n");
+@@ -341,6 +344,7 @@ static struct poptOption long_options[] 
    {"ignore-existing",  0,  POPT_ARG_NONE,   &opt_ignore_existing, 0, 0, 0 },
-   {"delete-after",     0,  POPT_ARG_NONE,   0,              OPT_DELETE_AFTER, 0, 0 },
-   {"delete-excluded",  0,  POPT_ARG_NONE,   0,              OPT_DELETE_EXCLUDED, 0, 0 },
-+  {"delete-sent-files",0,  POPT_ARG_NONE,   0,              OPT_DELETE_SENT_FILES, 0, 0 },
+   {"delete-after",     0,  POPT_ARG_NONE,   0, OPT_DELETE_AFTER, 0, 0 },
+   {"delete-excluded",  0,  POPT_ARG_NONE,   0, OPT_DELETE_EXCLUDED, 0, 0 },
++  {"delete-sent-files",0,  POPT_ARG_NONE,   &delete_sent_files, 0, 0, 0 },
    {"force",            0,  POPT_ARG_NONE,   &force_delete, 0, 0, 0 },
    {"numeric-ids",      0,  POPT_ARG_NONE,   &numeric_ids, 0, 0, 0 },
-   {"exclude",          0,  POPT_ARG_STRING, 0,              OPT_EXCLUDE, 0, 0 },
-@@ -539,6 +543,11 @@ int parse_arguments(int *argc, const cha
-                       delete_mode = 1;
-                       break;
+   {"exclude",          0,  POPT_ARG_STRING, 0, OPT_EXCLUDE, 0, 0 },
+@@ -854,6 +858,9 @@ int parse_arguments(int *argc, const cha
+       if (relative_paths < 0)
+               relative_paths = files_from? 1 : 0;
  
-+              case OPT_DELETE_SENT_FILES:
-+                      delete_sent_files = 1;
-+                      need_messages_from_generator = 1;
-+                      break;
++      if (delete_sent_files)
++              need_messages_from_generator = 1;
 +
-               case OPT_EXCLUDE:
-                       add_exclude(&exclude_list, poptGetOptArg(pc), 0);
-                       break;
-@@ -1099,6 +1108,9 @@ void server_options(char **args,int *arg
-               }
+       *argv = poptGetArgs(pc);
+       *argc = count_args(*argv);
+@@ -1240,6 +1247,9 @@ void server_options(char **args,int *arg
+                       args[ac++] = "--no-relative";
        }
  
 +      if (delete_sent_files)
@@ -129,9 +116,9 @@ command before "make":
        *argc = ac;
        return;
  
---- orig/receiver.c    2004-09-21 09:40:27
+--- orig/receiver.c    2005-01-10 09:46:01
 +++ receiver.c 2004-08-13 08:38:51
-@@ -45,6 +45,7 @@ extern char *backup_dir;
+@@ -46,6 +46,7 @@ extern char *backup_dir;
  extern char *backup_suffix;
  extern int backup_suffix_len;
  extern int cleanup_got_literal;
@@ -139,7 +126,7 @@ command before "make":
  extern int module_id;
  extern int ignore_errors;
  extern int orig_umask;
-@@ -337,7 +338,7 @@ int recv_files(int f_in, struct file_lis
+@@ -342,7 +343,7 @@ int recv_files(int f_in, struct file_lis
        char *fname, fbuf[MAXPATHLEN];
        char template[MAXPATHLEN];
        char fnametmp[MAXPATHLEN];
@@ -148,7 +135,7 @@ command before "make":
        char fnamecmpbuf[MAXPATHLEN];
        struct file_struct *file;
        struct stats initial_stats;
-@@ -572,7 +573,12 @@ int recv_files(int f_in, struct file_lis
+@@ -583,7 +584,12 @@ int recv_files(int f_in, struct file_lis
  
                cleanup_disable();
  
@@ -162,7 +149,7 @@ command before "make":
                        int msgtype = csum_length == SUM_LENGTH || read_batch ?
                                FERROR : FINFO;
                        if (msgtype == FERROR || verbose) {
-@@ -596,9 +602,8 @@ int recv_files(int f_in, struct file_lis
+@@ -607,9 +613,8 @@ int recv_files(int f_in, struct file_lis
                                        keptstr, redostr);
                        }
                        if (csum_length != SUM_LENGTH) {
@@ -174,7 +161,7 @@ command before "make":
                        }
                }
        }
---- orig/rsync.h       2004-09-22 08:47:31
+--- orig/rsync.h       2005-01-10 00:21:12
 +++ rsync.h    2004-07-03 20:17:10
 @@ -60,6 +60,7 @@
  #define FLAG_TOP_DIR (1<<0)
@@ -184,7 +171,7 @@ command before "make":
  
  /* update this if you make incompatible changes */
  #define PROTOCOL_VERSION 28
-@@ -127,6 +128,7 @@ enum logcode { FERROR=1, FINFO=2, FLOG=3
+@@ -134,6 +135,7 @@ enum logcode { FERROR=1, FINFO=2, FLOG=3
  /* Messages types that are sent over the message channel.  The logcode
   * values must all be present here with identical numbers. */
  enum msgcode {
@@ -192,7 +179,7 @@ command before "make":
        MSG_DONE=5,     /* current phase is done */
        MSG_REDO=4,     /* reprocess indicated flist index */
        MSG_ERROR=FERROR, MSG_INFO=FINFO, MSG_LOG=FLOG, /* remote logging */
---- orig/rsync.yo      2004-09-24 16:42:30
+--- orig/rsync.yo      2005-01-15 04:36:32
 +++ rsync.yo   2004-07-03 20:17:10
 @@ -343,6 +343,7 @@ verb(
       --delete                delete files that don't exist on sender
@@ -201,10 +188,10 @@ command before "make":
 +     --delete-sent-files     updated/sent files are removed from sender
       --ignore-errors         delete even if there are I/O errors
       --max-delete=NUM        don't delete more than NUM files
-      --partial               keep partially transferred files
-@@ -661,6 +662,11 @@ receiving side before transferring files
- sufficient space on the receiving filesystem. If you want to delete
- after transferring, use the --delete-after switch. Implies --delete.
+      --max-size=SIZE         don't transfer any file larger than SIZE
+@@ -693,6 +694,11 @@ One reason to use --delete-after is to a
+ the transfer (while the receiving side is scanned for deletions) as this
+ delay might cause the transfer to timeout.  
  
 +dit(bf(--delete-sent-files)) This tells rsync to remove the source files
 +on the sending side that are successfully transferred to the receiving
@@ -214,7 +201,7 @@ command before "make":
  dit(bf(--ignore-errors)) Tells --delete to go ahead and delete files
  even when there are I/O errors.
  
---- orig/sender.c      2004-09-20 05:10:48
+--- orig/sender.c      2005-01-01 21:11:01
 +++ sender.c   2004-07-26 16:49:19
 @@ -26,6 +26,7 @@ extern int io_error;
  extern int dry_run;
@@ -236,7 +223,7 @@ command before "make":
 +      struct file_struct *file;
 +      unsigned int offset;
 +
-+      if (!the_flist)
++      if (!the_flist || i < 0 || i >= the_flist->count)
 +              return;
 +
 +      file = the_flist->files[i];