X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/7f931a000240b28cb6495c5ab2d28851ca4bc807..0b73ca12fa018b3f6e45cc54912423930b3d6758:/generator.c diff --git a/generator.c b/generator.c index 886c6723..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,13 +187,19 @@ 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))) { /* if the file exists already and we aren't perserving presmissions then act as though the remote end sent us the file permissions we already have */ - file->mode = st.st_mode; + file->mode = (file->mode & _S_IFMT) | (st.st_mode & ~_S_IFMT); } if (S_ISDIR(file->mode)) { @@ -234,7 +241,7 @@ void recv_generator(char *fname,struct file_list *flist,int i,int f_out) l = readlink(fname,lnk,MAXPATHLEN-1); if (l > 0) { lnk[l] = 0; - if (file->link && strcmp(lnk,file->link) == 0) { + if (strcmp(lnk,file->link) == 0) { set_perms(fname,file,&st,1); return; } @@ -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; }