diff options
-rw-r--r-- | color.c | 2 | ||||
-rwxr-xr-x | tests.sh | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -734,7 +734,7 @@ static ssize_t first_broken_offset(const char *path, const struct BFTW *ftwbuf, } } else { // We're in print_link_target(), so resolve relative to the link's parent directory - at_fd = AT_FDCWD; + at_fd = ftwbuf->at_fd; if (at_fd == AT_FDCWD && path[0] != '/') { at_path = dstrndup(ftwbuf->path, ftwbuf->nameoff); if (at_path && dstrncat(&at_path, path, max) != 0) { @@ -2114,6 +2114,7 @@ function test_color_ls() { ln -s foo/bar/nowhere/nothing scratch/nested ln -s foo/bar/baz/qux scratch/notdir ln -s scratch/foo/bar scratch/relative + mkdir scratch/__bfs__ ln -s /__bfs__/nowhere scratch/absolute local EXPECTED="$TESTS/${FUNCNAME[0]}.out" |