Fixed failing hunks.
[rsync/rsync-patches.git] / remove-sent-files.diff
index 5dc442f..7f60b84 100644 (file)
@@ -4,7 +4,7 @@ command before "make":
     make proto
 
 
---- orig/io.c  2005-01-28 06:51:59
+--- orig/io.c  2005-02-03 02:04:20
 +++ io.c       2005-01-10 10:49:17
 @@ -244,6 +244,14 @@ static void read_msg_fd(void)
                read_loop(fd, buf, 4);
@@ -38,17 +38,17 @@ command before "make":
                case MSG_INFO:
                case MSG_ERROR:
                        if (remaining >= sizeof line) {
---- orig/main.c        2005-01-27 22:25:43
+--- orig/main.c        2005-01-30 10:07:21
 +++ main.c     2005-01-28 17:13:25
-@@ -36,6 +36,7 @@ extern int delete_mode;
+@@ -35,6 +35,7 @@ extern int cvs_exclude;
+ extern int delete_mode;
  extern int delete_before;
- extern int delete_after;
  extern int delete_excluded;
 +extern int delete_sent_files;
  extern int daemon_over_rsh;
  extern int do_stats;
  extern int dry_run;
-@@ -43,6 +44,7 @@ extern int list_only;
+@@ -42,6 +43,7 @@ extern int list_only;
  extern int local_server;
  extern int log_got_error;
  extern int module_id;
@@ -56,7 +56,7 @@ command before "make":
  extern int orig_umask;
  extern int copy_links;
  extern int keep_dirlinks;
-@@ -437,6 +439,12 @@ static void do_server_sender(int f_in, i
+@@ -443,6 +445,12 @@ static void do_server_sender(int f_in, i
                exit_cleanup(RERR_SYNTAX);
                return;
        }
@@ -69,7 +69,7 @@ command before "make":
  
        if (!relative_paths && !push_dir(dir)) {
                rsyserr(FERROR, errno, "push_dir#3 %s failed",
-@@ -671,6 +679,8 @@ void start_server(int f_in, int f_out, i
+@@ -676,6 +684,8 @@ void start_server(int f_in, int f_out, i
  
        if (am_sender) {
                keep_dirlinks = 0; /* Must be disabled on the sender. */
@@ -78,7 +78,7 @@ command before "make":
  
                recv_filter_list(f_in);
                if (cvs_exclude)
-@@ -753,6 +763,9 @@ int client_run(int f_in, int f_out, pid_
+@@ -758,6 +768,9 @@ int client_run(int f_in, int f_out, pid_
                exit_cleanup(status);
        }
  
@@ -88,9 +88,9 @@ command before "make":
        if (argc == 0)
                list_only |= 1;
  
---- orig/options.c     2005-01-28 17:12:13
+--- orig/options.c     2005-02-01 10:39:22
 +++ options.c  2005-01-23 07:30:51
-@@ -59,6 +59,7 @@ int delete_during = 0;
+@@ -60,6 +60,7 @@ int delete_during = 0;
  int delete_before = 0;
  int delete_after = 0;
  int delete_excluded = 0;
@@ -122,7 +122,7 @@ command before "make":
    {"force",            0,  POPT_ARG_NONE,   &force_delete, 0, 0, 0 },
    {"numeric-ids",      0,  POPT_ARG_NONE,   &numeric_ids, 0, 0, 0 },
    {"filter",          'f', POPT_ARG_STRING, 0, OPT_FILTER, 0, 0 },
-@@ -919,6 +923,9 @@ int parse_arguments(int *argc, const cha
+@@ -925,6 +929,9 @@ int parse_arguments(int *argc, const cha
        else if (delete_mode || delete_excluded)
                delete_mode = delete_before = 1;
  
@@ -132,7 +132,7 @@ command before "make":
        *argv = poptGetArgs(pc);
        *argc = count_args(*argv);
  
-@@ -1315,6 +1322,9 @@ void server_options(char **args,int *arg
+@@ -1321,6 +1328,9 @@ void server_options(char **args,int *arg
        if (!implied_dirs && !am_sender)
                args[ac++] = "--no-implied-dirs";
  
@@ -142,9 +142,9 @@ command before "make":
        *argc = ac;
        return;
  
---- orig/receiver.c    2005-01-27 23:57:45
+--- orig/receiver.c    2005-02-03 02:04:20
 +++ receiver.c 2004-08-13 08:38:51
-@@ -42,6 +42,7 @@ extern int basis_dir_cnt;
+@@ -41,6 +41,7 @@ extern int basis_dir_cnt;
  extern int make_backups;
  extern int do_progress;
  extern int cleanup_got_literal;
@@ -152,7 +152,7 @@ command before "make":
  extern int module_id;
  extern int ignore_errors;
  extern int orig_umask;
-@@ -271,7 +272,7 @@ int recv_files(int f_in, struct file_lis
+@@ -275,7 +276,7 @@ int recv_files(int f_in, struct file_lis
        char *fname, fbuf[MAXPATHLEN];
        char template[MAXPATHLEN];
        char fnametmp[MAXPATHLEN];
@@ -161,7 +161,7 @@ command before "make":
        char fnamecmpbuf[MAXPATHLEN];
        uchar *delayed_bits = NULL;
        struct file_struct *file;
-@@ -527,7 +528,12 @@ int recv_files(int f_in, struct file_lis
+@@ -532,7 +533,12 @@ int recv_files(int f_in, struct file_lis
  
                cleanup_disable();
  
@@ -175,7 +175,7 @@ command before "make":
                        int msgtype = csum_length == SUM_LENGTH || read_batch ?
                                FERROR : FINFO;
                        if (msgtype == FERROR || verbose) {
-@@ -551,9 +557,8 @@ int recv_files(int f_in, struct file_lis
+@@ -556,9 +562,8 @@ int recv_files(int f_in, struct file_lis
                                        keptstr, redostr);
                        }
                        if (csum_length != SUM_LENGTH) {
@@ -187,17 +187,17 @@ command before "make":
                        }
                }
        }
---- orig/rsync.h       2005-01-28 17:12:14
-+++ rsync.h    2004-07-03 20:17:10
-@@ -60,6 +60,7 @@
- #define FLAG_DEL_START (1<<0)
+--- orig/rsync.h       2005-02-03 02:04:20
++++ rsync.h    2005-02-03 02:04:59
+@@ -61,6 +61,7 @@
  #define FLAG_HLINK_EOL (1<<1) /* generator only */
  #define FLAG_MOUNT_POINT (1<<2)       /* sender only */
+ #define FLAG_DEL_HERE (1<<3)  /* receiver/generator */
 +#define FLAG_SENT (1<<7)      /* sender only */
  
  /* update this if you make incompatible changes */
  #define PROTOCOL_VERSION 29
-@@ -145,6 +146,7 @@ enum logcode { FERROR=1, FINFO=2, FLOG=3
+@@ -146,6 +147,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 {
@@ -205,9 +205,9 @@ 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      2005-01-28 17:12:14
-+++ rsync.yo   2005-01-23 07:31:03
-@@ -349,6 +349,7 @@ verb(
+--- orig/rsync.yo      2005-02-01 10:39:23
++++ rsync.yo   2005-02-03 02:05:29
+@@ -338,6 +338,7 @@ to the detailed description below for a 
       --delete-during         receiver deletes during xfer, not before
       --delete-after          receiver deletes after transfer, not before
       --delete-excluded       also delete excluded files on receiver
@@ -215,19 +215,19 @@ command before "make":
       --ignore-errors         delete even if there are I/O errors
       --force                 force deletion of dirs even if not empty
       --max-delete=NUM        don't delete more than NUM files
-@@ -738,6 +739,11 @@ receiving side that are not on the sendi
- delete any files on the receiving side that are excluded (see --exclude).
- See --delete (which is implied) for more details on file-deletion.
+@@ -727,6 +728,11 @@ receiving side that are not on the sendi
+ delete any files on the receiving side that are excluded (see bf(--exclude)).
+ See bf(--delete) (which is implied) for more details on file-deletion.
  
 +dit(bf(--delete-sent-files)) This tells rsync to remove the source files
 +on the sending side that are successfully transferred to the receiving
 +side.  Directories are not removed, nor are files that are identical on
 +both systems.
 +
- dit(bf(--ignore-errors)) Tells --delete to go ahead and delete files
+ dit(bf(--ignore-errors)) Tells bf(--delete) to go ahead and delete files
  even when there are I/O errors.
  
---- orig/sender.c      2005-01-25 00:00:31
+--- orig/sender.c      2005-02-03 02:04:20
 +++ sender.c   2004-07-26 16:49:19
 @@ -26,6 +26,7 @@ extern int io_error;
  extern int dry_run;
@@ -276,7 +276,7 @@ command before "make":
        while (1) {
                unsigned int offset;
  
-@@ -249,6 +274,9 @@ void send_files(struct file_list *flist,
+@@ -254,6 +279,9 @@ void send_files(struct file_list *flist,
                        rprintf(FINFO, "sender finished %s\n",
                                safe_fname(fname));
                }