Fixed ls formatting for 8 char user names.

-Erik
This commit is contained in:
Erik Andersen
2000-01-27 02:40:21 +00:00
parent de7965ca7e
commit ccc7488615
5 changed files with 5 additions and 2 deletions

View File

@@ -198,7 +198,7 @@ static void list_single(const char *name, struct stat *info, const char *fullnam
if (*scratch) {
fputs(scratch, stdout);
if ( strlen( scratch) <= 8 )
wr(" ", 8-strlen( scratch));
wr(" ", 9-strlen( scratch));
}
else {
writenum((long) info->st_uid,(short)8);