From c8f7a97f89d85c5f598b8dce9c58294ccfa8e17a Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Mon, 5 May 2008 14:45:32 +0000 Subject: [PATCH] - fix strncmp'ing "runlevel". (Cristian Ionescu-Idbohrn) --- miscutils/last.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miscutils/last.c b/miscutils/last.c index f823a1385..de2d2bb51 100644 --- a/miscutils/last.c +++ b/miscutils/last.c @@ -49,7 +49,7 @@ int last_main(int argc, char **argv ATTRIBUTE_UNUSED) ut.ut_type = SHUTDOWN_TIME; else if (strncmp(ut.ut_user, "reboot", 6) == 0) ut.ut_type = BOOT_TIME; - else if (strncmp(ut.ut_user, "runlevel", 7) == 0) + else if (strncmp(ut.ut_user, "runlevel", 8) == 0) ut.ut_type = RUN_LVL; } else { if (ut.ut_name[0] == '\0' || strcmp(ut.ut_name, "LOGIN") == 0) { -- 2.25.1