Earlier the rename(1) considered path as possible string to be renamed,
could lead to an issue with none existing destination. See below for
demonstration of this issue. After this change all directory elements
are ignored when the match finding happens.
$ cd $(mktemp -d)
$ mkdir aa ab
$ touch a{a,b}/aa
$ rename -v a x */aa
rename: aa/aa: rename to xa/aa failed: No such file or directory
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
target[sb.st_size] = '\0';
where = strstr(target, from);
- } else
- where = strstr(s, from);
+ } else {
+ char *file;
+ file = rindex(s, '/');
+ if (file == NULL)
+ file = s;
+ where = strstr(file, from);
+ }
if (where == NULL) {
free(target);
return 0;