diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-06 18:40:45 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-06 18:40:45 +0200 |
commit | 74562984720c3f7d0a62ffbfd8ee78391c39c1e8 (patch) | |
tree | 17d8ed82bdfc86dc8074873c7e78cc7d2ec2bc18 /shell/hush.c | |
parent | b18b04c8a832148fb47aec20ce1e74267d2fb438 (diff) | |
download | busybox-w32-74562984720c3f7d0a62ffbfd8ee78391c39c1e8.tar.gz busybox-w32-74562984720c3f7d0a62ffbfd8ee78391c39c1e8.tar.bz2 busybox-w32-74562984720c3f7d0a62ffbfd8ee78391c39c1e8.zip |
hush: "adopt" ash signal4.tests
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index aee77d03b..64b33cf1c 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -9486,7 +9486,7 @@ static int FAST_FUNC builtin_trap(char **argv) | |||
9486 | if (sig < 0 || sig >= NSIG) { | 9486 | if (sig < 0 || sig >= NSIG) { |
9487 | ret = EXIT_FAILURE; | 9487 | ret = EXIT_FAILURE; |
9488 | /* Mimic bash message exactly */ | 9488 | /* Mimic bash message exactly */ |
9489 | bb_perror_msg("trap: %s: invalid signal specification", argv[-1]); | 9489 | bb_error_msg("trap: %s: invalid signal specification", argv[-1]); |
9490 | continue; | 9490 | continue; |
9491 | } | 9491 | } |
9492 | 9492 | ||