diff options
author | Ron Yorston <rmy@pobox.com> | 2018-10-22 09:43:57 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2018-10-22 09:43:57 +0100 |
commit | fa2f19771ab92dc2c56358b1b58d1218ca8a16ac (patch) | |
tree | 4bbe58d26ae61614866aabe4b0936288739579c9 | |
parent | 3994d5a52b8fa70637bffe4173f165267e6169fb (diff) | |
download | busybox-w32-embed.tar.gz busybox-w32-embed.tar.bz2 busybox-w32-embed.zip |
Only disable tracing embedded scripts if they can't be listedembed
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c index 9d7ef032c..112b26981 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -14829,7 +14829,9 @@ procargs(char **argv) | |||
14829 | char *script; | 14829 | char *script; |
14830 | if ((script=check_embedded(*xargv)) != NULL) { | 14830 | if ((script=check_embedded(*xargv)) != NULL) { |
14831 | setinputstring(script); | 14831 | setinputstring(script); |
14832 | #if !ENABLE_ASH_LIST_EMBEDDED_SCRIPTS | ||
14832 | xflag = 0; | 14833 | xflag = 0; |
14834 | #endif | ||
14833 | goto setarg0; | 14835 | goto setarg0; |
14834 | } | 14836 | } |
14835 | #endif | 14837 | #endif |