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

lsextattr(8).
This commit is contained in:
pjd 2013-02-22 20:49:50 +00:00
parent 2f7ddc2dcd
commit 7df9c10e32

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)