diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-21 13:23:14 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-21 13:23:14 +0000 |
commit | e99be6e4a58561eb7521c57148ec65ba0d87dd7b (patch) | |
tree | 3ab3dd4df901851ff7f4345708592118766ba4aa /miscutils | |
parent | ec7c757361d94d39f4c947ba1ec3cf6f928fca64 (diff) | |
download | busybox-w32-e99be6e4a58561eb7521c57148ec65ba0d87dd7b.tar.gz busybox-w32-e99be6e4a58561eb7521c57148ec65ba0d87dd7b.tar.bz2 busybox-w32-e99be6e4a58561eb7521c57148ec65ba0d87dd7b.zip |
introduce LONE_CHAR (optimized strcmp with one-char string)
git-svn-id: svn://busybox.net/trunk/busybox@17027 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/last.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/last.c b/miscutils/last.c index 668f0c17d..fd1033bf7 100644 --- a/miscutils/last.c +++ b/miscutils/last.c | |||
@@ -44,7 +44,7 @@ int last_main(int argc, char **argv) | |||
44 | bb_perror_msg_and_die("short read"); | 44 | bb_perror_msg_and_die("short read"); |
45 | } | 45 | } |
46 | 46 | ||
47 | if (strncmp(ut.ut_line, "~", 1) == 0) { | 47 | if (ut.ut_line[0] == '~') { |
48 | if (strncmp(ut.ut_user, "shutdown", 8) == 0) | 48 | if (strncmp(ut.ut_user, "shutdown", 8) == 0) |
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) |