who: fix wrong date/time field size
This commit is contained in:
parent
40702dac93
commit
e5569cb52e
@ -52,7 +52,7 @@ int who_main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
setutent();
|
setutent();
|
||||||
printf("USER TTY IDLE TIME HOST\n");
|
printf("USER TTY IDLE TIME HOST\n");
|
||||||
while ((ut = getutent()) != NULL) {
|
while ((ut = getutent()) != NULL) {
|
||||||
if (ut->ut_user[0] && ut->ut_type == USER_PROCESS) {
|
if (ut->ut_user[0] && ut->ut_type == USER_PROCESS) {
|
||||||
time_t thyme = ut->ut_tv.tv_sec;
|
time_t thyme = ut->ut_tv.tv_sec;
|
||||||
@ -63,7 +63,8 @@ int who_main(int argc, char **argv)
|
|||||||
str6[1] = '\0';
|
str6[1] = '\0';
|
||||||
if (stat(name, &st) == 0)
|
if (stat(name, &st) == 0)
|
||||||
idle_string(str6, st.st_atime);
|
idle_string(str6, st.st_atime);
|
||||||
printf("%-10s %-8s %-9s %-14.14s %s\n",
|
/* 15 chars for time: Nov 10 19:33:20 */
|
||||||
|
printf("%-10s %-8s %-9s %-15.15s %s\n",
|
||||||
ut->ut_user, ut->ut_line, str6,
|
ut->ut_user, ut->ut_line, str6,
|
||||||
ctime(&thyme) + 4, ut->ut_host);
|
ctime(&thyme) + 4, ut->ut_host);
|
||||||
if (ENABLE_FEATURE_CLEAN_UP)
|
if (ENABLE_FEATURE_CLEAN_UP)
|
||||||
|
Loading…
Reference in New Issue
Block a user