diff options
| author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-21 13:23:14 +0000 |
|---|---|---|
| committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-21 13:23:14 +0000 |
| commit | bf66fbc8e2380717c1fab860cfc60c78582839dd (patch) | |
| tree | 3ab3dd4df901851ff7f4345708592118766ba4aa /miscutils | |
| parent | 6910741067913d131d931b1e6424d3b8ed43e64f (diff) | |
| download | busybox-w32-bf66fbc8e2380717c1fab860cfc60c78582839dd.tar.gz busybox-w32-bf66fbc8e2380717c1fab860cfc60c78582839dd.tar.bz2 busybox-w32-bf66fbc8e2380717c1fab860cfc60c78582839dd.zip | |
introduce LONE_CHAR (optimized strcmp with one-char string)
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) |
