X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/bf4e725d5d3c0a06c9a8d74cb9b1c183e161f148..066696644f8fa36f5ca3be116d015ded400266de:/syscall.c diff --git a/syscall.c b/syscall.c index b4b581b9..58f1f677 100644 --- a/syscall.c +++ b/syscall.c @@ -29,6 +29,7 @@ extern int dry_run; extern int read_only; extern int list_only; +extern int preserve_perms; #define CHECK_RO if (read_only || list_only) {errno = EROFS; return -1;} @@ -97,9 +98,13 @@ int do_open(char *pathname, int flags, mode_t mode) #if HAVE_CHMOD int do_chmod(const char *path, mode_t mode) { + int code; if (dry_run) return 0; CHECK_RO - return chmod(path, mode); + code = chmod(path, mode); + if ((code != 0) && preserve_perms) + return code; + return 0; } #endif @@ -113,15 +118,19 @@ int do_rename(char *fname1, char *fname2) void trim_trailing_slashes(char *name) { - char *p; + int l; /* Some BSD systems cannot make a directory if the name * contains a trailing slash. * */ - if (!*name) - return; /* empty string */ - p = strchr(name, '\0') - 1; - while (p == '/') { - p-- = '\0'; + + /* Don't change empty string; and also we can't improve on + * "/" */ + + l = strlen(name); + while (l > 1) { + if (name[--l] != '/') + break; + name[l] = '\0'; } } @@ -146,7 +155,7 @@ int do_mkstemp(char *template, mode_t perms) { int fd = mkstemp(template); if (fd == -1) return -1; - if (fchmod(fd, perms) != 0) { + if ((fchmod(fd, perms) != 0) && preserve_perms) { close(fd); unlink(template); return -1;