From 75950323dcf086e89e23e923fa1e2bd31f1c2f62 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 10 Mar 2021 10:32:58 -0500 Subject: bftw: Fix bftw_type() for broken links and BFS_STAT_FOLLOW This fixes link target coloring for broken links with -L. --- color.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'color.c') diff --git a/color.c b/color.c index b003cff..f04bdf5 100644 --- a/color.c +++ b/color.c @@ -850,24 +850,21 @@ static int print_path(CFILE *cfile, const struct BFTW *ftwbuf) { /** Print a link target with the appropriate colors. */ static int print_link_target(CFILE *cfile, const struct BFTW *ftwbuf) { - int ret = -1; - const struct bfs_stat *statbuf = bftw_cached_stat(ftwbuf, BFS_STAT_NOFOLLOW); size_t len = statbuf ? statbuf->size : 0; char *target = xreadlinkat(ftwbuf->at_fd, ftwbuf->at_path, len); if (!target) { - goto done; + return -1; } - if (!cfile->colors) { + int ret; + if (cfile->colors) { + ret = print_path_colored(cfile, target, ftwbuf, BFS_STAT_FOLLOW); + } else { ret = dstrcat(&cfile->buffer, target); - goto done; } - ret = print_path_colored(cfile, target, ftwbuf, BFS_STAT_FOLLOW); - -done: free(target); return ret; } -- cgit v1.2.3