From: Martin Pool Date: Mon, 25 Mar 2002 03:29:47 +0000 (+0000) Subject: Code that was meant to trim trailing slashes from mkdir() paths X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/bf4e725d5d3c0a06c9a8d74cb9b1c183e161f148 Code that was meant to trim trailing slashes from mkdir() paths actually did not; fix it. --- 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); }