Simplified the build instructions now that we have "prepare-source".
[rsync/rsync-patches.git] / threaded-receiver.diff
index 07b9131..a5949b5 100644 (file)
@@ -13,12 +13,18 @@ this code works fine using the GNU pth library without any code changes if
 you configured it with --enable-syscall-soft --enable-pthread (you may need
 to twiddle the Makefile options if you didn't install the library, though).
 
+NOTE: we still need to duplicate the partial_fname static in util.c!
+
 If you try this out, please send some email to wayned@samba.org or the rsync
 mailing list with your results, build changes, bug reports, etc.  Thanks!
 
-Be sure to run "make proto" before running "make".
+After applying this patch, run these commands for a successful build:
+
+    ./prepare-source
+    ./configure                      (optional if already run)
+    make
 
---- orig/Makefile.in   2005-11-07 04:29:00
+--- orig/Makefile.in   2006-02-06 05:03:50
 +++ Makefile.in        2005-12-10 18:35:39
 @@ -6,7 +6,7 @@ exec_prefix=@exec_prefix@
  bindir=@bindir@
@@ -29,19 +35,30 @@ Be sure to run "make proto" before running "make".
  CC=@CC@
  CFLAGS=@CFLAGS@
  CPPFLAGS=@CPPFLAGS@
---- orig/cleanup.c     2005-11-10 16:58:36
-+++ cleanup.c  2005-12-08 23:17:08
-@@ -94,9 +94,6 @@ void _exit_cleanup(int code, const char 
+--- orig/cleanup.c     2006-02-03 20:00:35
++++ cleanup.c  2006-02-03 20:07:44
+@@ -26,10 +26,6 @@ extern int keep_partial;
+ extern int log_got_error;
+ extern char *partial_dir;
+-#ifdef HAVE_SIGACTION
+-static struct sigaction sigact;
+-#endif
+-
+ /**
+  * Close all open sockets and files, allowing a (somewhat) graceful
+  * shutdown() of socket connections.  This eliminates the abortive
+@@ -98,9 +94,6 @@ void _exit_cleanup(int code, const char 
        }
        inside_cleanup++;
  
--      signal(SIGUSR1, SIG_IGN);
--      signal(SIGUSR2, SIG_IGN);
+-      SIGACTION(SIGUSR1, SIG_IGN);
+-      SIGACTION(SIGUSR2, SIG_IGN);
 -
        if (verbose > 3) {
                rprintf(FINFO,"_exit_cleanup(code=%d, file=%s, line=%d): entered\n",
-                       code, safe_fname(file), line);
-@@ -127,8 +124,6 @@ void _exit_cleanup(int code, const char 
+                       code, file, line);
+@@ -132,8 +125,6 @@ void _exit_cleanup(int code, const char 
        io_flush(FULL_FLUSH);
        if (cleanup_fname)
                do_unlink(cleanup_fname);
@@ -50,9 +67,19 @@ Be sure to run "make proto" before running "make".
        if (cleanup_pid && cleanup_pid == getpid()) {
                char *pidf = lp_pid_file();
                if (pidf && *pidf)
---- orig/generator.c   2005-11-12 20:31:04
+--- orig/errcode.h     2005-12-16 23:48:43
++++ errcode.h  2005-12-16 23:50:02
+@@ -37,7 +37,6 @@
+ #define RERR_CRASHED    15      /* sibling crashed */
+ #define RERR_TERMINATED 16      /* sibling terminated abnormally */
+-#define RERR_SIGNAL1    19      /* status returned when sent SIGUSR1 */
+ #define RERR_SIGNAL     20      /* status returned when sent SIGINT, SIGTERM, SIGHUP */
+ #define RERR_WAITCHILD  21      /* some error returned by waitpid() */
+ #define RERR_MALLOC     22      /* error allocating core memory buffers */
+--- orig/generator.c   2006-02-05 06:40:40
 +++ generator.c        2005-12-08 23:17:08
-@@ -65,7 +65,6 @@ extern OFF_T min_size;
+@@ -67,7 +67,6 @@ extern OFF_T min_size;
  extern int io_error;
  extern int allowed_lull;
  extern int sock_f_out;
@@ -60,9 +87,9 @@ Be sure to run "make proto" before running "make".
  extern int protocol_version;
  extern int fuzzy_basis;
  extern int always_checksum;
-@@ -94,6 +93,11 @@ extern struct filter_list_struct server_
- static int deletion_count = 0; /* used to implement --max-delete */
+@@ -98,6 +97,11 @@ static int deletion_count = 0; /* used t
+ static int can_link_symlinks = 1; /* start out optimistic */
+ static int can_link_devices = 1;
  
 +/* These vars are local copies so that the receiver can use the originals. */
 +static int GEN_append_mode;
@@ -110,7 +137,7 @@ Be sure to run "make proto" before running "make".
                                continue;
                }
  
-@@ -1063,7 +1067,7 @@ static void recv_generator(char *fname, 
+@@ -1140,7 +1144,7 @@ static void recv_generator(char *fname, 
                return;
        }
  
@@ -118,8 +145,8 @@ Be sure to run "make proto" before running "make".
 +      if (GEN_append_mode && st.st_size > file->length)
                return;
  
-       if (!compare_dest && fnamecmp_type <= FNAMECMP_BASIS_DIR_HIGH)
-@@ -1124,7 +1128,7 @@ static void recv_generator(char *fname, 
+       if (fnamecmp_type <= FNAMECMP_BASIS_DIR_HIGH)
+@@ -1195,7 +1199,7 @@ static void recv_generator(char *fname, 
                goto notify_others;
        }
  
@@ -128,7 +155,7 @@ Be sure to run "make proto" before running "make".
                if (!(backupptr = get_backup_name(fname))) {
                        close(fd);
                        return;
-@@ -1214,7 +1218,10 @@ void generate_files(int f_out, struct fi
+@@ -1284,7 +1288,10 @@ void generate_files(int f_out, struct fi
        int save_ignore_existing = ignore_existing;
        int save_ignore_non_existing = ignore_non_existing;
        int save_do_progress = do_progress;
@@ -140,7 +167,7 @@ Be sure to run "make proto" before running "make".
  
        if (protocol_version >= 29) {
                itemizing = 1;
-@@ -1243,7 +1250,7 @@ void generate_files(int f_out, struct fi
+@@ -1313,7 +1320,7 @@ void generate_files(int f_out, struct fi
                do_delete_pass(flist);
        do_progress = 0;
  
@@ -149,7 +176,7 @@ Be sure to run "make proto" before running "make".
                whole_file = 0;
        if (verbose >= 2) {
                rprintf(FINFO, "delta-transmission %s\n",
-@@ -1252,12 +1259,6 @@ void generate_files(int f_out, struct fi
+@@ -1322,12 +1329,6 @@ void generate_files(int f_out, struct fi
                        : "enabled");
        }
  
@@ -162,8 +189,8 @@ Be sure to run "make proto" before running "make".
        for (i = 0; i < flist->count; i++) {
                struct file_struct *file = flist->files[i];
  
-@@ -1301,23 +1302,34 @@ void generate_files(int f_out, struct fi
-               delete_in_dir(NULL, NULL, NULL);
+@@ -1371,23 +1372,34 @@ void generate_files(int f_out, struct fi
+               delete_in_dir(NULL, NULL, NULL, NULL);
  
        phase++;
 -      csum_length = SUM_LENGTH;
@@ -203,7 +230,7 @@ Be sure to run "make proto" before running "make".
                if (local_name)
                        strlcpy(fbuf, local_name, sizeof fbuf);
                else
-@@ -1329,27 +1341,43 @@ void generate_files(int f_out, struct fi
+@@ -1399,27 +1411,43 @@ void generate_files(int f_out, struct fi
        phase++;
        ignore_non_existing = save_ignore_non_existing;
        ignore_existing = save_ignore_existing;
@@ -254,8 +281,8 @@ Be sure to run "make proto" before running "make".
        }
  
        do_progress = save_do_progress;
---- orig/io.c  2005-12-08 21:19:31
-+++ io.c       2005-12-10 19:03:08
+--- orig/io.c  2006-02-04 21:53:39
++++ io.c       2006-02-01 19:50:09
 @@ -47,7 +47,6 @@ extern int allowed_lull;
  extern int am_server;
  extern int am_daemon;
@@ -424,7 +451,7 @@ Be sure to run "make proto" before running "make".
  static void read_msg_fd(void)
  {
        char buf[2048];
-@@ -266,40 +267,6 @@ static void read_msg_fd(void)
+@@ -266,47 +267,6 @@ static void read_msg_fd(void)
        tag = (tag >> 24) - MPLEX_BASE;
  
        switch (tag) {
@@ -462,10 +489,17 @@ Be sure to run "make proto" before running "make".
 -              if (preserve_hard_links)
 -                      flist_ndx_push(&hlink_list, IVAL(buf,0));
 -              break;
+-      case MSG_SOCKERR:
+-              if (!am_generator) {
+-                      rprintf(FERROR, "invalid message %d:%d\n", tag, len);
+-                      exit_cleanup(RERR_STREAMIO);
+-              }
+-              close_multiplexing_out();
+-              /* FALL THROUGH */
        case MSG_INFO:
        case MSG_ERROR:
        case MSG_LOG:
-@@ -320,71 +287,72 @@ static void read_msg_fd(void)
+@@ -327,71 +287,75 @@ static void read_msg_fd(void)
        msg_fd_in = fd;
  }
  
@@ -510,6 +544,9 @@ Be sure to run "make proto" before running "make".
 -                      written = 0;
 +              struct msg_list_item *ml = (struct msg_list_item *)msg_list.head;
 +              switch (ml->code) {
++              case MSG_SOCKERR:
++                      close_multiplexing_out();
++                      /* FALL THROUGH */
 +              case MSG_INFO:
 +              case MSG_ERROR:
 +              case MSG_LOG:
@@ -582,7 +619,7 @@ Be sure to run "make proto" before running "make".
        return flist_ndx_pop(&hlink_list);
  }
  
-@@ -465,11 +433,6 @@ static int read_timeout(int fd, char *bu
+@@ -471,11 +435,6 @@ static int read_timeout(int fd, char *bu
                FD_ZERO(&r_fds);
                FD_ZERO(&w_fds);
                FD_SET(fd, &r_fds);
@@ -594,7 +631,7 @@ Be sure to run "make proto" before running "make".
                if (io_filesfrom_f_out >= 0) {
                        int new_fd;
                        if (io_filesfrom_buflen == 0) {
-@@ -502,9 +465,6 @@ static int read_timeout(int fd, char *bu
+@@ -508,9 +467,6 @@ static int read_timeout(int fd, char *bu
                        continue;
                }
  
@@ -604,7 +641,7 @@ Be sure to run "make proto" before running "make".
                if (io_filesfrom_f_out >= 0) {
                        if (io_filesfrom_buflen) {
                                if (FD_ISSET(io_filesfrom_f_out, &w_fds)) {
-@@ -832,6 +792,8 @@ static void readfd(int fd, char *buffer,
+@@ -832,6 +788,8 @@ static void readfd(int fd, char *buffer,
        }
  
        if (fd == write_batch_monitor_in) {
@@ -613,7 +650,7 @@ Be sure to run "make proto" before running "make".
                if ((size_t)write(batch_fd, buffer, total) != total)
                        exit_cleanup(RERR_FILEIO);
        }
-@@ -1091,7 +1053,6 @@ static void writefd_unbuffered(int fd,ch
+@@ -1087,7 +1045,6 @@ static void writefd_unbuffered(int fd,ch
                         * to grab any messages they sent before they died. */
                        while (fd == sock_f_out && io_multiplexing_in) {
                                set_io_timeout(30);
@@ -621,16 +658,16 @@ Be sure to run "make proto" before running "make".
                                readfd_unbuffered(sock_f_in, io_filesfrom_buf,
                                                  sizeof io_filesfrom_buf);
                        }
-@@ -1101,7 +1062,7 @@ static void writefd_unbuffered(int fd,ch
-               total += ret;
+@@ -1097,7 +1054,7 @@ static void writefd_unbuffered(int fd,ch
+               total += cnt;
  
                if (fd == sock_f_out) {
 -                      if (io_timeout || am_generator)
 +                      if (io_timeout || am_generator())
                                last_io_out = time(NULL);
-                       sleep_for_bwlimit(ret);
+                       sleep_for_bwlimit(cnt);
                }
-@@ -1126,7 +1087,7 @@ static void mplex_write(enum msgcode cod
+@@ -1121,7 +1078,7 @@ static void mplex_write(enum msgcode cod
         * cause output to occur down the socket.  Setting contiguous_write_len
         * prevents the reading of msg_fd_in once we actually start to write
         * this sequence of data (though we might read it before the start). */
@@ -639,7 +676,7 @@ Be sure to run "make proto" before running "make".
                contiguous_write_len = len + 4;
  
        if (n > sizeof buffer - 4)
-@@ -1141,33 +1102,31 @@ static void mplex_write(enum msgcode cod
+@@ -1137,31 +1094,29 @@ static void mplex_write(enum msgcode cod
        if (len)
                writefd_unbuffered(sock_f_out, buf, len);
  
@@ -648,7 +685,6 @@ Be sure to run "make proto" before running "make".
                contiguous_write_len = 0;
  }
  
  void io_flush(int flush_it_all)
  {
 -      msg_list_flush(flush_it_all);
@@ -674,7 +710,6 @@ Be sure to run "make proto" before running "make".
 +              msg_list_flush(flush_it_all);
  }
  
  static void writefd(int fd,char *buf,size_t len)
  {
 -      if (fd == msg_fd_out) {
@@ -685,7 +720,7 @@ Be sure to run "make proto" before running "make".
        if (fd == sock_f_out)
                stats.total_written += len;
  
-@@ -1387,9 +1346,3 @@ void start_write_batch(int fd)
+@@ -1374,9 +1329,3 @@ void start_write_batch(int fd)
        else
                write_batch_monitor_in = fd;
  }
@@ -695,28 +730,27 @@ Be sure to run "make proto" before running "make".
 -      write_batch_monitor_out = -1;
 -      write_batch_monitor_in = -1;
 -}
---- orig/log.c 2005-10-26 16:49:08
-+++ log.c      2005-12-08 23:17:09
-@@ -35,7 +35,6 @@ extern int am_sender;
+--- orig/log.c 2006-02-05 04:53:34
++++ log.c      2005-12-16 23:49:57
+@@ -38,7 +38,6 @@ extern int am_sender;
  extern int local_server;
  extern int quiet;
  extern int module_id;
 -extern int msg_fd_out;
  extern int protocol_version;
  extern int preserve_times;
- extern int log_format_has_o_or_i;
-@@ -67,7 +66,7 @@ struct {
+ extern int log_format_has_i;
+@@ -74,7 +73,6 @@ struct {
        { RERR_IPC        , "error in IPC code" },
        { RERR_CRASHED    , "sibling process crashed" },
        { RERR_TERMINATED , "sibling process terminated abnormally" },
--      { RERR_SIGNAL     , "received SIGUSR1 or SIGINT" },
-+      { RERR_SIGNAL     , "received SIGINT, SIGHUP, or SIGTERM" },
+-      { RERR_SIGNAL1    , "received SIGUSR1" },
+       { RERR_SIGNAL     , "received SIGINT, SIGTERM, or SIGHUP" },
        { RERR_WAITCHILD  , "waitpid() failed" },
        { RERR_MALLOC     , "error allocating core memory buffers" },
-       { RERR_PARTIAL    , "some files could not be transferred" },
-@@ -204,8 +203,8 @@ void rwrite(enum logcode code, char *buf
-       buf[len] = 0;
+@@ -234,8 +232,8 @@ void rwrite(enum logcode code, char *buf
+       if (quiet && code == FINFO)
+               return;
  
 -      if (am_server && msg_fd_out >= 0) {
 -              /* Pass the message to our sibling. */
@@ -725,8 +759,8 @@ Be sure to run "make proto" before running "make".
                send_msg((enum msgcode)code, buf, len);
                return;
        }
---- orig/main.c        2005-12-15 07:55:39
-+++ main.c     2005-12-10 19:02:56
+--- orig/main.c        2006-02-05 04:53:34
++++ main.c     2006-02-02 02:43:44
 @@ -30,7 +30,6 @@ extern int list_only;
  extern int am_root;
  extern int am_server;
@@ -735,7 +769,7 @@ Be sure to run "make proto" before running "make".
  extern int am_daemon;
  extern int blocking_io;
  extern int remove_sent_files;
-@@ -75,9 +74,20 @@ struct pid_status {
+@@ -84,9 +83,20 @@ struct pid_status {
  
  static time_t starttime, endtime;
  static int64 total_read, total_written;
@@ -756,7 +790,7 @@ Be sure to run "make proto" before running "make".
  /* Works like waitpid(), but if we already harvested the child pid in our
   * sigchld_handler(), we succeed instead of returning an error. */
  pid_t wait_process(pid_t pid, int *status_ptr, int flags)
-@@ -154,7 +164,7 @@ static void handle_stats(int f)
+@@ -163,7 +173,7 @@ static void handle_stats(int f)
                show_flist_stats();
        }
  
@@ -765,7 +799,7 @@ Be sure to run "make proto" before running "make".
                return;
  
        if (am_daemon) {
-@@ -558,12 +568,30 @@ static void do_server_sender(int f_in, i
+@@ -618,12 +628,30 @@ static void do_server_sender(int f_in, i
        exit_cleanup(0);
  }
  
@@ -799,7 +833,7 @@ Be sure to run "make proto" before running "make".
  
        /* The receiving side mustn't obey this, or an existing symlink that
         * points to an identical file won't be replaced by the referent. */
-@@ -572,70 +600,16 @@ static int do_recv(int f_in,int f_out,st
+@@ -632,70 +660,16 @@ static int do_recv(int f_in,int f_out,st
        if (preserve_hard_links)
                init_hard_links();
  
@@ -875,7 +909,7 @@ Be sure to run "make proto" before running "make".
        generate_files(f_out, flist, local_name);
  
        handle_stats(-1);
-@@ -646,10 +620,13 @@ static int do_recv(int f_in,int f_out,st
+@@ -706,10 +680,13 @@ static int do_recv(int f_in,int f_out,st
        }
        io_flush(FULL_FLUSH);
  
@@ -893,14 +927,14 @@ Be sure to run "make proto" before running "make".
  }
  
  
-@@ -1011,22 +988,6 @@ static int start_client(int argc, char *
+@@ -1077,22 +1054,6 @@ static int start_client(int argc, char *
        return ret;
  }
  
 -
 -static RETSIGTYPE sigusr1_handler(UNUSED(int val))
 -{
--      exit_cleanup(RERR_SIGNAL);
+-      exit_cleanup(RERR_SIGNAL1);
 -}
 -
 -static RETSIGTYPE sigusr2_handler(UNUSED(int val))
@@ -916,15 +950,15 @@ Be sure to run "make proto" before running "make".
  static RETSIGTYPE sigchld_handler(UNUSED(int val))
  {
  #ifdef WNOHANG
-@@ -1109,8 +1070,6 @@ int main(int argc,char *argv[])
-       int orig_argc = argc;
-       char **orig_argv = argv;
--      signal(SIGUSR1, sigusr1_handler);
--      signal(SIGUSR2, sigusr2_handler);
-       signal(SIGCHLD, sigchld_handler);
+@@ -1184,8 +1145,6 @@ int main(int argc,char *argv[])
+ # endif
+       sigact.sa_flags = SA_NOCLDSTOP;
+ #endif
+-      SIGACTMASK(SIGUSR1, sigusr1_handler);
+-      SIGACTMASK(SIGUSR2, sigusr2_handler);
+       SIGACTMASK(SIGCHLD, sigchld_handler);
  #ifdef MAINTAINER_MODE
-       signal(SIGSEGV, rsync_panic_handler);
+       SIGACTMASK(SIGSEGV, rsync_panic_handler);
 --- orig/match.c       2005-11-10 16:58:36
 +++ match.c    2005-12-08 23:17:09
 @@ -21,7 +21,7 @@
@@ -963,9 +997,9 @@ Be sure to run "make proto" before running "make".
                                show_progress(last_match, buf->file_size);
                        sum_update(map_ptr(buf, last_match, len), len);
                        last_match = s->flength;
---- orig/options.c     2005-11-15 18:21:22
+--- orig/options.c     2006-02-03 23:51:57
 +++ options.c  2005-12-08 23:17:09
-@@ -69,7 +69,6 @@ int def_compress_level = Z_DEFAULT_COMPR
+@@ -73,7 +73,6 @@ int def_compress_level = Z_DEFAULT_COMPR
  int am_root = 0;
  int am_server = 0;
  int am_sender = 0;
@@ -973,7 +1007,7 @@ Be sure to run "make proto" before running "make".
  int am_starting_up = 1;
  int orig_umask = 0;
  int relative_paths = -1;
-@@ -89,6 +88,7 @@ int am_daemon = 0;
+@@ -94,6 +93,7 @@ int am_daemon = 0;
  int daemon_over_rsh = 0;
  int do_stats = 0;
  int do_progress = 0;
@@ -981,7 +1015,7 @@ Be sure to run "make proto" before running "make".
  int keep_partial = 0;
  int safe_symlinks = 0;
  int copy_unsafe_links = 0;
-@@ -1232,6 +1232,7 @@ int parse_arguments(int *argc, const cha
+@@ -1290,6 +1290,7 @@ int parse_arguments(int *argc, const cha
        if ((do_progress || dry_run) && !verbose && !log_before_transfer
            && !am_server)
                verbose = 1;
@@ -989,9 +1023,9 @@ Be sure to run "make proto" before running "make".
  
        if (dry_run)
                do_xfers = 0;
---- orig/pipe.c        2005-10-24 21:04:45
+--- orig/pipe.c        2006-01-21 08:03:40
 +++ pipe.c     2005-12-08 23:17:09
-@@ -55,7 +55,7 @@ pid_t piped_child(char **command, int *f
+@@ -56,7 +56,7 @@ pid_t piped_child(char **command, int *f
                exit_cleanup(RERR_IPC);
        }
  
@@ -1000,7 +1034,7 @@ Be sure to run "make proto" before running "make".
        if (pid == -1) {
                rsyserr(FERROR, errno, "fork");
                exit_cleanup(RERR_IPC);
-@@ -117,7 +117,7 @@ pid_t local_child(int argc, char **argv,
+@@ -120,7 +120,7 @@ pid_t local_child(int argc, char **argv,
                exit_cleanup(RERR_IPC);
        }
  
@@ -1009,8 +1043,8 @@ Be sure to run "make proto" before running "make".
        if (pid == -1) {
                rsyserr(FERROR, errno, "fork");
                exit_cleanup(RERR_IPC);
---- orig/receiver.c    2005-11-10 16:58:36
-+++ receiver.c 2005-12-08 23:17:10
+--- orig/receiver.c    2006-01-31 02:30:18
++++ receiver.c 2006-01-14 08:30:29
 @@ -24,7 +24,7 @@ extern int verbose;
  extern int do_xfers;
  extern int am_daemon;
@@ -1020,7 +1054,7 @@ Be sure to run "make proto" before running "make".
  extern int log_before_transfer;
  extern int log_format_has_i;
  extern int daemon_log_format_has_i;
-@@ -220,7 +220,7 @@ static int receive_data(int f_in, char *
+@@ -219,7 +219,7 @@ static int receive_data(int f_in, char *
                if (sum.remainder)
                        sum.flength -= sum.blength - sum.remainder;
                for (j = CHUNK_SIZE; j < sum.flength; j += CHUNK_SIZE) {
@@ -1029,7 +1063,7 @@ Be sure to run "make proto" before running "make".
                                show_progress(offset, total_size);
                        sum_update(map_ptr(mapbuf, offset, CHUNK_SIZE),
                                   CHUNK_SIZE);
-@@ -228,7 +228,7 @@ static int receive_data(int f_in, char *
+@@ -227,7 +227,7 @@ static int receive_data(int f_in, char *
                }
                if (offset < sum.flength) {
                        int32 len = sum.flength - offset;
@@ -1038,7 +1072,7 @@ Be sure to run "make proto" before running "make".
                                show_progress(offset, total_size);
                        sum_update(map_ptr(mapbuf, offset, len), len);
                        offset = sum.flength;
-@@ -241,7 +241,7 @@ static int receive_data(int f_in, char *
+@@ -240,7 +240,7 @@ static int receive_data(int f_in, char *
        }
  
        while ((i = recv_token(f_in, &data)) != 0) {
@@ -1047,7 +1081,7 @@ Be sure to run "make proto" before running "make".
                        show_progress(offset, total_size);
  
                if (i > 0) {
-@@ -309,7 +309,7 @@ static int receive_data(int f_in, char *
+@@ -308,7 +308,7 @@ static int receive_data(int f_in, char *
                ftruncate(fd, offset);
  #endif
  
@@ -1056,9 +1090,9 @@ Be sure to run "make proto" before running "make".
                end_progress(total_size);
  
        if (fd != -1 && offset > 0 && sparse_end(fd) != 0) {
-@@ -362,14 +362,13 @@ static void handle_delayed_updates(struc
-                                       full_fname(fname),
-                                       safe_fname(partialptr));
+@@ -359,12 +359,12 @@ static void handle_delayed_updates(struc
+                                       "rename failed for %s (from %s)",
+                                       full_fname(fname), partialptr);
                        } else {
 -                              if (remove_sent_files
 -                                  || (preserve_hard_links
@@ -1067,15 +1101,12 @@ Be sure to run "make proto" before running "make".
                                        SIVAL(numbuf, 0, i);
                                        send_msg(MSG_SUCCESS,numbuf,4);
                                }
--                              handle_partial_dir(partialptr,
--                                                 PDIR_DELETE);
 +                              if (preserve_hard_links && file->link_u.links)
 +                                      push_hlink_num(i);
-+                              handle_partial_dir(partialptr, PDIR_DELETE);
+                               handle_partial_dir(partialptr, PDIR_DELETE);
                        }
                }
-       }
-@@ -419,11 +418,6 @@ int recv_files(int f_in, struct file_lis
+@@ -415,11 +415,6 @@ int recv_files(int f_in, struct file_lis
        if (verbose > 2)
                rprintf(FINFO,"recv_files(%d) starting\n",flist->count);
  
@@ -1087,7 +1118,7 @@ Be sure to run "make proto" before running "make".
        if (delay_updates)
                init_delayed_bits(flist->count);
  
-@@ -444,7 +438,7 @@ int recv_files(int f_in, struct file_lis
+@@ -440,7 +435,7 @@ int recv_files(int f_in, struct file_lis
                                rprintf(FINFO, "recv_files phase=%d\n", phase);
                        if (phase == 2 && delay_updates)
                                handle_delayed_updates(flist, local_name);
@@ -1096,16 +1127,16 @@ Be sure to run "make proto" before running "make".
                        if (keep_partial && !partial_dir)
                                make_backups = 0; /* prevents double backup */
                        if (append_mode) {
-@@ -665,7 +659,7 @@ int recv_files(int f_in, struct file_lis
+@@ -662,7 +657,7 @@ int recv_files(int f_in, struct file_lis
                /* log the transfer */
                if (log_before_transfer)
                        log_item(file, &initial_stats, iflags, NULL);
 -              else if (!am_server && verbose && do_progress)
 +              else if (!am_server && verbose && recv_progress)
-                       rprintf(FINFO, "%s\n", safe_fname(fname));
+                       rprintf(FINFO, "%s\n", fname);
  
                /* recv file data */
-@@ -705,11 +699,12 @@ int recv_files(int f_in, struct file_lis
+@@ -705,11 +700,12 @@ int recv_files(int f_in, struct file_lis
                cleanup_disable();
  
                if (recv_ok > 0) {
@@ -1120,9 +1151,9 @@ Be sure to run "make proto" before running "make".
                } else if (!recv_ok) {
                        int msgtype = phase || read_batch ? FERROR : FINFO;
                        if (msgtype == FERROR || verbose) {
-@@ -732,10 +727,8 @@ int recv_files(int f_in, struct file_lis
-                                       errstr, safe_fname(fname),
-                                       keptstr, redostr);
+@@ -731,10 +727,8 @@ int recv_files(int f_in, struct file_lis
+                                       "%s: %s failed verification -- update %s%s.\n",
+                                       errstr, fname, keptstr, redostr);
                        }
 -                      if (!phase) {
 -                              SIVAL(numbuf, 0, i);
@@ -1133,9 +1164,9 @@ Be sure to run "make proto" before running "make".
                }
        }
        make_backups = save_make_backups;
---- orig/rsync.c       2005-07-27 23:31:12
+--- orig/rsync.c       2006-02-05 15:31:49
 +++ rsync.c    2005-12-08 23:17:10
-@@ -30,7 +30,6 @@ extern int omit_dir_times;
+@@ -41,7 +41,6 @@ extern int orig_umask;
  extern int am_root;
  extern int am_server;
  extern int am_sender;
@@ -1143,19 +1174,19 @@ Be sure to run "make proto" before running "make".
  extern int am_starting_up;
  extern int preserve_uid;
  extern int preserve_gid;
-@@ -210,5 +209,5 @@ const char *who_am_i(void)
+@@ -291,5 +290,5 @@ const char *who_am_i(void)
  {
        if (am_starting_up)
                return am_server ? "server" : "client";
 -      return am_sender ? "sender" : am_generator ? "generator" : "receiver";
 +      return am_sender ? "sender" : am_generator() ? "generator" : "receiver";
  }
---- orig/rsync.h       2005-11-12 20:31:04
-+++ rsync.h    2005-12-10 19:02:58
+--- orig/rsync.h       2006-02-03 20:00:36
++++ rsync.h    2006-01-17 02:46:03
 @@ -166,10 +166,8 @@ enum msgcode {
        MSG_DATA=0,     /* raw data on the multiplexed stream */
        MSG_ERROR=FERROR, MSG_INFO=FINFO, /* remote logging */
-       MSG_LOG=FLOG, MSG_FCLIENT=FCLIENT, /* sibling logging */
+       MSG_LOG=FLOG, MSG_SOCKERR=FSOCKERR, /* sibling logging */
 -      MSG_REDO=9,     /* reprocess indicated flist index */
        MSG_SUCCESS=100,/* successfully updated indicated flist index */
        MSG_DELETED=101,/* successfully deleted a file on receiving side */
@@ -1171,9 +1202,9 @@ Be sure to run "make proto" before running "make".
  
  #include "lib/pool_alloc.h"
  
---- orig/util.c        2005-11-12 20:13:05
+--- orig/util.c        2006-02-03 20:00:36
 +++ util.c     2005-12-08 23:17:10
-@@ -405,51 +405,6 @@ int robust_rename(char *from, char *to, 
+@@ -413,51 +413,6 @@ int robust_rename(char *from, char *to, 
        return -1;
  }