mirror of
https://github.com/sheumann/hush.git
synced 2025-01-03 00:31:16 +00:00
Make formatting match GNU ls (we were including a spare ' ')
-Erik
This commit is contained in:
parent
fa1c5aac51
commit
bb9579ffc3
@ -637,7 +637,7 @@ static int list_single(struct dnode *dn)
|
|||||||
my_getpwuid(scratch, dn->dstat.st_uid);
|
my_getpwuid(scratch, dn->dstat.st_uid);
|
||||||
printf("%-8.8s ", scratch);
|
printf("%-8.8s ", scratch);
|
||||||
my_getgrgid(scratch, dn->dstat.st_gid);
|
my_getgrgid(scratch, dn->dstat.st_gid);
|
||||||
printf("%-8.8s ", scratch);
|
printf("%-8.8s", scratch);
|
||||||
column += 17;
|
column += 17;
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
2
ls.c
2
ls.c
@ -637,7 +637,7 @@ static int list_single(struct dnode *dn)
|
|||||||
my_getpwuid(scratch, dn->dstat.st_uid);
|
my_getpwuid(scratch, dn->dstat.st_uid);
|
||||||
printf("%-8.8s ", scratch);
|
printf("%-8.8s ", scratch);
|
||||||
my_getgrgid(scratch, dn->dstat.st_gid);
|
my_getgrgid(scratch, dn->dstat.st_gid);
|
||||||
printf("%-8.8s ", scratch);
|
printf("%-8.8s", scratch);
|
||||||
column += 17;
|
column += 17;
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user