X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/ded8347d6b8aca7fafaeb8fea40b789d6425addd..bf4e725d5d3c0a06c9a8d74cb9b1c183e161f148:/syscall.c diff --git a/syscall.c b/syscall.c index f7ce3f03..b4b581b9 100644 --- a/syscall.c +++ b/syscall.c @@ -111,19 +111,27 @@ int do_rename(char *fname1, char *fname2) } +void trim_trailing_slashes(char *name) +{ + char *p; + /* 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'; + } +} + + int do_mkdir(char *fname, mode_t mode) { - int l; if (dry_run) return 0; CHECK_RO; - - /* Some BSD systems cannot make a directory if the name - * contains a trailing slash. - * */ - if ((l = strlen(fname)) && (fname[l-1] == '/')) - fname[l-1] = '/'; - + trim_trailing_slashes(fname); return mkdir(fname, mode); }