diff options
Diffstat (limited to 'ls.c')
-rw-r--r-- | ls.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -600,13 +600,11 @@ int list_single(struct dnode *dn) | |||
600 | break; | 600 | break; |
601 | case LIST_ID_NAME: | 601 | case LIST_ID_NAME: |
602 | #ifdef BB_FEATURE_LS_USERNAME | 602 | #ifdef BB_FEATURE_LS_USERNAME |
603 | memset(scratch, 0, sizeof(scratch)); | ||
604 | my_getpwuid(scratch, dn->dstat.st_uid); | 603 | my_getpwuid(scratch, dn->dstat.st_uid); |
605 | if (*scratch) | 604 | if (*scratch) |
606 | fprintf(stdout, "%-8.8s ", scratch); | 605 | fprintf(stdout, "%-8.8s ", scratch); |
607 | else | 606 | else |
608 | fprintf(stdout, "%-8d ", dn->dstat.st_uid); | 607 | fprintf(stdout, "%-8d ", dn->dstat.st_uid); |
609 | memset(scratch, 0, sizeof(scratch)); | ||
610 | my_getgrgid(scratch, dn->dstat.st_gid); | 608 | my_getgrgid(scratch, dn->dstat.st_gid); |
611 | if (*scratch) | 609 | if (*scratch) |
612 | fprintf(stdout, "%-8.8s", scratch); | 610 | fprintf(stdout, "%-8.8s", scratch); |