diff options
| author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 18:17:42 +0000 |
|---|---|---|
| committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 18:17:42 +0000 |
| commit | 666da5e2c6edec979966d16771818b32dcfafe04 (patch) | |
| tree | c23e6a01fc51d8419c1562f70836148c705ac46a /shell | |
| parent | 270c17c0e66ffe9fe0e47e891a583b5c6f8512ef (diff) | |
| download | busybox-w32-666da5e2c6edec979966d16771818b32dcfafe04.tar.gz busybox-w32-666da5e2c6edec979966d16771818b32dcfafe04.tar.bz2 busybox-w32-666da5e2c6edec979966d16771818b32dcfafe04.zip | |
merge post-1.3.0 fixes
Diffstat (limited to 'shell')
| -rw-r--r-- | shell/ash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index afb9b6a95..dcf77054f 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
| @@ -85,7 +85,7 @@ | |||
| 85 | #ifdef CONFIG_ASH_JOB_CONTROL | 85 | #ifdef CONFIG_ASH_JOB_CONTROL |
| 86 | #define JOBS 1 | 86 | #define JOBS 1 |
| 87 | #else | 87 | #else |
| 88 | #undef JOBS | 88 | #define JOBS 0 |
| 89 | #endif | 89 | #endif |
| 90 | 90 | ||
| 91 | #if JOBS || defined(CONFIG_ASH_READ_NCHARS) | 91 | #if JOBS || defined(CONFIG_ASH_READ_NCHARS) |
| @@ -6647,7 +6647,7 @@ usage: | |||
| 6647 | } | 6647 | } |
| 6648 | #endif /* JOBS */ | 6648 | #endif /* JOBS */ |
| 6649 | 6649 | ||
| 6650 | #if defined(JOBS) || DEBUG | 6650 | #if JOBS || DEBUG |
| 6651 | static int | 6651 | static int |
| 6652 | jobno(const struct job *jp) | 6652 | jobno(const struct job *jp) |
| 6653 | { | 6653 | { |
