Don't print an empty line for files with no attributes when -q is given for

lsextattr(8).
This commit is contained in:
Pawel Jakub Dawidek 2013-02-22 20:49:50 +00:00
parent 69b23515b5
commit 081b42f93c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=247164

View File

@ -237,7 +237,8 @@ main(int argc, char *argv[])
printf("%s%*.*s", i ? "\t" : "",
ch, ch, buf + i + 1);
}
printf("\n");
if (!flag_quiet || error > 0)
printf("\n");
continue;
case EAGET:
if (flag_nofollow)