aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-05 14:45:32 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-05 14:45:32 +0000
commitc8f7a97f89d85c5f598b8dce9c58294ccfa8e17a (patch)
tree8542830ad7a5231c1f1d2e17decf86bc7b7e7df1
parent8abae8841019fcc75852131b2d1d16bf5710b4b7 (diff)
downloadbusybox-w32-c8f7a97f89d85c5f598b8dce9c58294ccfa8e17a.tar.gz
busybox-w32-c8f7a97f89d85c5f598b8dce9c58294ccfa8e17a.tar.bz2
busybox-w32-c8f7a97f89d85c5f598b8dce9c58294ccfa8e17a.zip
- fix strncmp'ing "runlevel". (Cristian Ionescu-Idbohrn)
-rw-r--r--miscutils/last.c2
1 files changed, 1 insertions, 1 deletions
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)
49 ut.ut_type = SHUTDOWN_TIME; 49 ut.ut_type = SHUTDOWN_TIME;
50 else if (strncmp(ut.ut_user, "reboot", 6) == 0) 50 else if (strncmp(ut.ut_user, "reboot", 6) == 0)
51 ut.ut_type = BOOT_TIME; 51 ut.ut_type = BOOT_TIME;
52 else if (strncmp(ut.ut_user, "runlevel", 7) == 0) 52 else if (strncmp(ut.ut_user, "runlevel", 8) == 0)
53 ut.ut_type = RUN_LVL; 53 ut.ut_type = RUN_LVL;
54 } else { 54 } else {
55 if (ut.ut_name[0] == '\0' || strcmp(ut.ut_name, "LOGIN") == 0) { 55 if (ut.ut_name[0] == '\0' || strcmp(ut.ut_name, "LOGIN") == 0) {