Add '*' suffix to executables

This commit is contained in:
sin 2014-10-21 15:36:23 +01:00
parent fef2d63e76
commit 56252bdf98
1 changed files with 3 additions and 0 deletions

View File

@ -349,6 +349,9 @@ printent(struct entry *ent, int active)
} else if (S_ISLNK(ent->mode)) {
cm = '@';
maxlen--;
} else if (ent->mode & S_IXUSR) {
cm = '*';
maxlen--;
}
/* No text wrapping in entries */