- add libbb function str_tolower to convert a string to lowercase.
[oweals/busybox.git] / miscutils / last.c
index 668f0c17dc5d5f36731483066394361cc50c91fb..d354807e5ed0adb1cdce3b594e9a1f6a48a1a182 100644 (file)
@@ -26,6 +26,7 @@
 #error struct utmp member char[] size(s) have changed!
 #endif
 
+int last_main(int argc, char **argv);
 int last_main(int argc, char **argv)
 {
        struct utmp ut;
@@ -44,7 +45,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)