Turn a tab into a space. This fixes a misalignment for ls -l.

Tabs Noticed by: Antoine Brodin
This commit is contained in:
Warner Losh 2008-04-05 21:26:25 +00:00
parent 8aa9e82e67
commit 2af52e0724
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=177942

View File

@ -168,7 +168,7 @@ printlong(const DISPLAY *dp)
prevdev = sp->st_dev;
}
np = p->fts_pointer;
(void)printf("%s %*u %-*s %-*s ", buf, dp->s_nlink,
(void)printf("%s %*u %-*s %-*s ", buf, dp->s_nlink,
sp->st_nlink, dp->s_user, np->user, dp->s_group,
np->group);
if (f_flags)
@ -388,7 +388,7 @@ printtime(time_t ftime)
format = d_first ? "%e %b %R" : "%b %e %R";
else
/* mmm dd yyyy || dd mmm yyyy */
format = d_first ? "%e %b %Y" : "%b %e %Y";
format = d_first ? "%e %b %Y" : "%b %e %Y";
strftime(longstring, sizeof(longstring), format, localtime(&ftime));
fputs(longstring, stdout);
fputc(' ', stdout);