diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/hush.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index 6734c92..efb20d9 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -615,7 +615,8 @@ static void maybe_die(const char *notice, const char *msg) * but it SEGVs. ?! Oh well... explicit temp ptr works around that */ void FAST_FUNC (*fp)(const char *s, ...) = bb_error_msg_and_die; #if ENABLE_HUSH_INTERACTIVE - fp = (G_interactive_fd ? bb_error_msg : bb_error_msg_and_die); + if (G_interactive_fd) + fp = bb_error_msg; #endif fp(msg ? "%s: %s" : notice, notice, msg); } |