X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/ea42541fe0783d3b3e8f44c76cbdfd82550a9c68..314a74d73101cdb9402ee21999187173456085dc:/rsync.c diff --git a/rsync.c b/rsync.c index 11414025..cfee2d03 100644 --- a/rsync.c +++ b/rsync.c @@ -1,17 +1,17 @@ -/* +/* Copyright (C) Andrew Tridgell 1996 Copyright (C) Paul Mackerras 1996 - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. @@ -43,8 +43,8 @@ void free_sums(struct sum_struct *s) /* - * delete a file or directory. If force_delete is set then delete - * recursively + * delete a file or directory. If force_delete is set then delete + * recursively */ int delete_file(char *fname) { @@ -73,7 +73,7 @@ int delete_file(char *fname) } if (do_rmdir(fname) == 0 || errno == ENOENT) return 0; - if (!force_delete || !recurse || + if (!force_delete || !recurse || (errno != ENOTEMPTY && errno != EEXIST)) { rprintf(FERROR, "delete_file: rmdir %s failed: %s\n", full_fname(fname), strerror(errno)); @@ -88,10 +88,10 @@ int delete_file(char *fname) return -1; } - for (di=readdir(d); di; di=readdir(d)) { + for (errno = 0, di = readdir(d); di; errno = 0, di = readdir(d)) { char *dname = d_name(di); - if (strcmp(dname,".")==0 || - strcmp(dname,"..")==0) + if (strcmp(dname,".") == 0 + || strcmp(dname,"..") == 0) continue; snprintf(buf, sizeof(buf), "%s/%s", fname, dname); if (verbose > 0) @@ -100,10 +100,16 @@ int delete_file(char *fname) closedir(d); return -1; } - } + } + if (errno) { + rprintf(FERROR, "delete_file: readdir %s failed: %s\n", + full_fname(fname), strerror(errno)); + closedir(d); + return -1; + } closedir(d); - + if (do_rmdir(fname) != 0) { rprintf(FERROR, "delete_file: rmdir %s failed: %s\n", full_fname(fname), strerror(errno)); @@ -127,7 +133,7 @@ static int is_in_group(gid_t gid) /* treat failure (-1) as if not member of any group */ ngroups = getgroups(0, 0); if (ngroups > 0) { - gidset = (GETGROUPS_T *) malloc(ngroups * sizeof(GETGROUPS_T)); + gidset = new_array(GETGROUPS_T, ngroups); ngroups = getgroups(ngroups, gidset); } } @@ -148,7 +154,7 @@ static int is_in_group(gid_t gid) } int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st, - int report) + int report) { int updated = 0; STRUCT_STAT st2; @@ -218,7 +224,7 @@ int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st, } } #endif - + if (verbose > 1 && report) { if (updated) rprintf(FINFO,"%s\n",fname); @@ -245,7 +251,7 @@ void finish_transfer(char *fname, char *fnametmp, struct file_struct *file) /* move tmp file over real file */ if (robust_rename(fnametmp,fname) != 0) { if (errno == EXDEV) { - /* rename failed on cross-filesystem link. + /* rename failed on cross-filesystem link. Copy the file instead. */ if (copy_file(fnametmp,fname, file->mode & INITACCESSPERMS)) { rprintf(FERROR, "copy %s -> \"%s\": %s\n",