X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/7e0ca8e2f0945b8c1b99c88a0283068a3adb19e4..e30f065766d103b47aaccbe777308e0d2381fd6e:/generator.c diff --git a/generator.c b/generator.c index 9bf0e959..3f6322f8 100644 --- a/generator.c +++ b/generator.c @@ -353,8 +353,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; }