aboutsummaryrefslogtreecommitdiff
path: root/miscutils/last.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-05-17 23:50:14 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-05-17 23:50:14 +0000
commitd04e1fc309f3df9e1be2dde7556fda47ac577c5a (patch)
tree7bc22205526ded4be1bbb1372c12f10295b5cc11 /miscutils/last.c
parent2794c9bb938346f446ddc383b2621f6e6be6fdc8 (diff)
downloadbusybox-d04e1fc309f3df9e1be2dde7556fda47ac577c5a.tar.gz
last: style fixes
Diffstat (limited to 'miscutils/last.c')
-rw-r--r--miscutils/last.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/miscutils/last.c b/miscutils/last.c
index de2d2bb51..749862c35 100644
--- a/miscutils/last.c
+++ b/miscutils/last.c
@@ -38,7 +38,8 @@ int last_main(int argc, char **argv ATTRIBUTE_UNUSED)
}
file = xopen(bb_path_wtmp_file, O_RDONLY);
- printf("%-10s %-14s %-18s %-12.12s %s\n", "USER", "TTY", "HOST", "LOGIN", "TIME");
+ printf("%-10s %-14s %-18s %-12.12s %s\n",
+ "USER", "TTY", "HOST", "LOGIN", "TIME");
while ((n = full_read(file, &ut, sizeof(ut))) > 0) {
if (n != sizeof(ut)) {
bb_perror_msg_and_die("short read");
@@ -63,8 +64,12 @@ int last_main(int argc, char **argv ATTRIBUTE_UNUSED)
ut.ut_type = USER_PROCESS;
}
if (strcmp(ut.ut_name, "date") == 0) {
- if (ut.ut_line[0] == '|') ut.ut_type = OLD_TIME;
- if (ut.ut_line[0] == '{') ut.ut_type = NEW_TIME;
+ if (ut.ut_line[0] == '|') {
+ ut.ut_type = OLD_TIME;
+ }
+ if (ut.ut_line[0] == '{') {
+ ut.ut_type = NEW_TIME;
+ }
}
}
@@ -81,8 +86,8 @@ int last_main(int argc, char **argv ATTRIBUTE_UNUSED)
}
}
t_tmp = (time_t)ut.ut_tv.tv_sec;
- printf("%-10s %-14s %-18s %-12.12s\n", ut.ut_user, ut.ut_line, ut.ut_host,
- ctime(&t_tmp) + 4);
+ printf("%-10s %-14s %-18s %-12.12s\n",
+ ut.ut_user, ut.ut_line, ut.ut_host, ctime(&t_tmp) + 4);
}
fflush_stdout_and_exit(EXIT_SUCCESS);