X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/a54a2c4d2d84418b6658697c7926321278e1e34f..refs/heads/master:/copy-devices.diff diff --git a/copy-devices.diff b/copy-devices.diff index cf8b145..62635ec 100644 --- a/copy-devices.diff +++ b/copy-devices.diff @@ -8,8 +8,10 @@ To use this patch, run these commands for a successful build: ./configure (optional if already run) make ---- old/generator.c -+++ new/generator.c +based-on: a01e3b490eb36ccf9e704840e1b6683dab867550 +diff --git a/generator.c b/generator.c +--- a/generator.c ++++ b/generator.c @@ -39,6 +39,7 @@ extern int preserve_acls; extern int preserve_xattrs; extern int preserve_links; @@ -17,8 +19,8 @@ To use this patch, run these commands for a successful build: +extern int copy_devices; extern int preserve_specials; extern int preserve_hard_links; - extern int preserve_perms; -@@ -1476,7 +1477,7 @@ static void recv_generator(char *fname, + extern int preserve_executability; +@@ -1494,7 +1495,7 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx, goto cleanup; } @@ -27,9 +29,10 @@ To use this patch, run these commands for a successful build: if (solo_file) fname = f_name(file, NULL); rprintf(FINFO, "skipping non-regular file \"%s\"\n", fname); ---- old/options.c -+++ new/options.c -@@ -45,6 +45,7 @@ int append_mode = 0; +diff --git a/options.c b/options.c +--- a/options.c ++++ b/options.c +@@ -48,6 +48,7 @@ int append_mode = 0; int keep_dirlinks = 0; int copy_dirlinks = 0; int copy_links = 0; @@ -37,7 +40,7 @@ To use this patch, run these commands for a successful build: int preserve_links = 0; int preserve_hard_links = 0; int preserve_acls = 0; -@@ -340,6 +341,7 @@ void usage(enum logcode F) +@@ -695,6 +696,7 @@ void usage(enum logcode F) rprintf(F," -o, --owner preserve owner (super-user only)\n"); rprintf(F," -g, --group preserve group\n"); rprintf(F," --devices preserve device files (super-user only)\n"); @@ -45,7 +48,7 @@ To use this patch, run these commands for a successful build: rprintf(F," --specials preserve special files\n"); rprintf(F," -D same as --devices --specials\n"); rprintf(F," -t, --times preserve modification times\n"); -@@ -494,6 +496,7 @@ static struct poptOption long_options[] +@@ -863,6 +865,7 @@ static struct poptOption long_options[] = { {"no-D", 0, POPT_ARG_NONE, 0, OPT_NO_D, 0, 0 }, {"devices", 0, POPT_ARG_VAL, &preserve_devices, 1, 0, 0 }, {"no-devices", 0, POPT_ARG_VAL, &preserve_devices, 0, 0, 0 }, @@ -53,18 +56,19 @@ To use this patch, run these commands for a successful build: {"specials", 0, POPT_ARG_VAL, &preserve_specials, 1, 0, 0 }, {"no-specials", 0, POPT_ARG_VAL, &preserve_specials, 0, 0, 0 }, {"links", 'l', POPT_ARG_VAL, &preserve_links, 1, 0, 0 }, -@@ -1962,6 +1965,9 @@ void server_options(char **args,int *arg +@@ -2661,6 +2664,9 @@ void server_options(char **args, int *argc_p) else if (remove_source_files) args[ac++] = "--remove-sent-files"; + if (copy_devices) + args[ac++] = "--copy-devices"; + - *argc = ac; - return; - ---- old/rsync.c -+++ new/rsync.c + if (ac > MAX_SERVER_ARGS) { /* Not possible... */ + rprintf(FERROR, "argc overflow in server_options().\n"); + exit_cleanup(RERR_MALLOC); +diff --git a/rsync.c b/rsync.c +--- a/rsync.c ++++ b/rsync.c @@ -33,6 +33,7 @@ extern int preserve_xattrs; extern int preserve_perms; extern int preserve_executability; @@ -73,7 +77,7 @@ To use this patch, run these commands for a successful build: extern int am_root; extern int am_server; extern int am_sender; -@@ -219,7 +220,8 @@ int read_ndx_and_attrs(int f_in, int *if +@@ -397,7 +398,8 @@ int read_ndx_and_attrs(int f_in, int f_out, int *iflag_ptr, uchar *type_ptr, if (iflags & ITEM_TRANSFER) { int i = ndx - cur_flist->ndx_start; @@ -83,10 +87,11 @@ To use this patch, run these commands for a successful build: rprintf(FERROR, "received request to transfer non-regular file: %d [%s]\n", ndx, who_am_i()); ---- old/sender.c -+++ new/sender.c -@@ -314,6 +314,20 @@ void send_files(int f_in, int f_out) - exit_cleanup(RERR_PROTOCOL); +diff --git a/sender.c b/sender.c +--- a/sender.c ++++ b/sender.c +@@ -341,6 +341,20 @@ void send_files(int f_in, int f_out) + exit_cleanup(RERR_FILEIO); } + /* On Matt's computer, st_size is falsely 0 for most devices.