aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/last.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2014-05-10 13:24:58 -0500
committerRob Landley <rob@landley.net>2014-05-10 13:24:58 -0500
commit5369517b2cd0437a603ab7b33b499062804ae141 (patch)
tree242e30c8b5aec0314a7b90c92aba7c56c5a9c454 /toys/pending/last.c
parent6ef8ce45ae3adae2bd6a36781a6d7f60122548f2 (diff)
downloadtoybox-5369517b2cd0437a603ab7b33b499062804ae141.tar.gz
sizeof("string") treats it as a char array _including_ the null terminator, so strncmp(dest, "string", sizeof("string")) is just strcpy.
Diffstat (limited to 'toys/pending/last.c')
-rw-r--r--toys/pending/last.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/toys/pending/last.c b/toys/pending/last.c
index 06d81ce9..53a9ee05 100644
--- a/toys/pending/last.c
+++ b/toys/pending/last.c
@@ -138,7 +138,7 @@ void last_main(void)
curlog_type = RUN_LVL;
} else if (ut.ut_type == BOOT_TIME) {
seize_duration(tm[0], tm[1]);
- strncpy(ut.ut_line, "system boot", sizeof("system boot"));
+ strcpy(ut.ut_line, "system boot");
free_list();
printf("%-8.8s %-12.12s %-*.*s %-16.16s %-7.7s %s\n", ut.ut_user,
ut.ut_line, pwidth, pwidth, ut.ut_host,
@@ -165,18 +165,18 @@ void last_main(void)
seize_duration(tm[0], tm[2]);
switch (type) {
case EMPTY:
- strncpy(toybuf+18, " still", sizeof(" still"));
- strncpy(toybuf+28, "logged in", sizeof("logged in"));
+ strcpy(toybuf+18, " still");
+ strcpy(toybuf+28, "logged in");
break;
case RUN_LVL:
- strncpy(toybuf+18, "- down ", sizeof("- down "));
+ strcpy(toybuf+18, "- down ");
break;
case BOOT_TIME:
- strncpy(toybuf+18, "- crash", sizeof("- crash"));
+ strcpy(toybuf+18, "- crash");
break;
case INIT_PROCESS:
- strncpy(toybuf+18, " gone", sizeof(" gone"));
- strncpy(toybuf+28, "- no logout", sizeof("- no logout"));
+ strcpy(toybuf+18, " gone");
+ strcpy(toybuf+28, "- no logout");
break;
default:
break;