X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/7e0ca8e2f0945b8c1b99c88a0283068a3adb19e4..0b73ca12fa018b3f6e45cc54912423930b3d6758:/generator.c diff --git a/generator.c b/generator.c index 9bf0e959..cb63f72e 100644 --- a/generator.c +++ b/generator.c @@ -178,6 +178,7 @@ void recv_generator(char *fname,struct file_list *flist,int i,int f_out) extern char *compare_dest; extern int list_only; extern int preserve_perms; + extern int only_existing; if (list_only) return; @@ -186,6 +187,12 @@ void recv_generator(char *fname,struct file_list *flist,int i,int f_out) statret = link_stat(fname,&st); + if (only_existing && statret == -1 && errno == ENOENT) { + /* we only want to update existing files */ + if (verbose > 1) rprintf(FINFO,"not creating %s\n",fname); + return; + } + if (statret == 0 && !preserve_perms && (S_ISDIR(st.st_mode) == S_ISDIR(file->mode))) { @@ -353,8 +360,10 @@ void recv_generator(char *fname,struct file_list *flist,int i,int f_out) fd = do_open(fnamecmp, O_RDONLY, 0); if (fd == -1) { - rprintf(FERROR,"failed to open %s : %s\n",fnamecmp,strerror(errno)); - rprintf(FERROR,"skipping %s\n",fname); + rprintf(FERROR,"failed to open %s, continuing : %s\n",fnamecmp,strerror(errno)); + /* pretend the file didn't exist */ + write_int(f_out,i); + send_sums(NULL,f_out); return; }