diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index de5c44ead..57d192822 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -51,7 +51,6 @@ | |||
51 | 51 | ||
52 | #define JOBS ENABLE_ASH_JOB_CONTROL | 52 | #define JOBS ENABLE_ASH_JOB_CONTROL |
53 | 53 | ||
54 | #include <paths.h> | ||
55 | #include <setjmp.h> | 54 | #include <setjmp.h> |
56 | #include <fnmatch.h> | 55 | #include <fnmatch.h> |
57 | #include <sys/times.h> | 56 | #include <sys/times.h> |
@@ -8823,7 +8822,7 @@ evaltree(union node *n, int flags) | |||
8823 | n->nbinary.ch1, | 8822 | n->nbinary.ch1, |
8824 | (flags | ((is_or >> 1) - 1)) & EV_TESTED | 8823 | (flags | ((is_or >> 1) - 1)) & EV_TESTED |
8825 | ); | 8824 | ); |
8826 | if (!exitstatus == is_or) | 8825 | if ((!exitstatus) == is_or) |
8827 | break; | 8826 | break; |
8828 | if (!evalskip) { | 8827 | if (!evalskip) { |
8829 | n = n->nbinary.ch2; | 8828 | n = n->nbinary.ch2; |