X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=miscutils%2Flast.c;h=fd1033bf7c493a651ad54a0afb3343e63491c5ea;hb=2f6df7fa0a70810d70e8ca0816b64c0f40b76847;hp=6e35879f3a09578c7ace6d4209ca54faadd53082;hpb=d921b2ecc0d294ad4bf8c7458fc52a60c28727d2;p=oweals%2Fbusybox.git diff --git a/miscutils/last.c b/miscutils/last.c index 6e35879f3..fd1033bf7 100644 --- a/miscutils/last.c +++ b/miscutils/last.c @@ -4,7 +4,7 @@ * * Copyright (C) 2003-2004 by Erik Andersen * - * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. + * Licensed under the GPL version 2, see the file LICENSE in this tarball. */ #include "busybox.h" @@ -44,7 +44,7 @@ int last_main(int argc, char **argv) bb_perror_msg_and_die("short read"); } - if (strncmp(ut.ut_line, "~", 1) == 0) { + if (ut.ut_line[0] == '~') { if (strncmp(ut.ut_user, "shutdown", 8) == 0) ut.ut_type = SHUTDOWN_TIME; else if (strncmp(ut.ut_user, "reboot", 6) == 0) @@ -87,5 +87,5 @@ int last_main(int argc, char **argv) ctime(&t_tmp) + 4); } - bb_fflush_stdout_and_exit(EXIT_SUCCESS); + fflush_stdout_and_exit(EXIT_SUCCESS); }