Adds an 'else if' statement inside the loop to check for symbolic links. Signed-off-by: Joao Marcos Costa <joaomarcos.co...@bootlin.com> --- Changes in v2: - Changed commit title and message, which were wrong and/or misleading in v1. fs/fs.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/fs/fs.c b/fs/fs.c index 6d776c676a..e06f87db99 100644 --- a/fs/fs.c +++ b/fs/fs.c @@ -59,6 +59,9 @@ static int fs_ls_generic(const char *dirname) if (dent->type == FS_DT_DIR) { printf(" %s/\n", dent->name); ndirs++; + } else if (dent->type == FS_DT_LNK) { + printf(" <SYM> %s\n", dent->name); + nfiles++; } else { printf(" %8lld %s\n", dent->size, dent->name); nfiles++; -- 2.17.1