diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-20 19:14:19 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-20 19:14:19 +0100 |
commit | c270454f8f1f33e5438e46cb13bebd8fb190a40a (patch) | |
tree | 88b30e299e775cbac784eaf71c1e3c103a43a180 /shell | |
parent | ad7d94bdc7d6a8ffe798a54f09e1e51dd949c9b7 (diff) | |
download | busybox-w32-c270454f8f1f33e5438e46cb13bebd8fb190a40a.tar.gz busybox-w32-c270454f8f1f33e5438e46cb13bebd8fb190a40a.tar.bz2 busybox-w32-c270454f8f1f33e5438e46cb13bebd8fb190a40a.zip |
fix fallout from isprint() changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/hush.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/hush.c b/shell/hush.c index 2d6f55bc7..3044024a0 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -5572,6 +5572,10 @@ static int process_command_subs(o_string *dest, const char *s) | |||
5572 | } | 5572 | } |
5573 | #endif /* ENABLE_HUSH_TICK */ | 5573 | #endif /* ENABLE_HUSH_TICK */ |
5574 | 5574 | ||
5575 | #if !ENABLE_HUSH_FUNCTIONS | ||
5576 | #define parse_group(dest, ctx, input, ch) \ | ||
5577 | parse_group(ctx, input, ch) | ||
5578 | #endif | ||
5575 | static int parse_group(o_string *dest, struct parse_context *ctx, | 5579 | static int parse_group(o_string *dest, struct parse_context *ctx, |
5576 | struct in_str *input, int ch) | 5580 | struct in_str *input, int ch) |
5577 | { | 5581 | { |