aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-10-22 09:43:57 +0100
committerRon Yorston <rmy@pobox.com>2018-10-22 09:43:57 +0100
commitfa2f19771ab92dc2c56358b1b58d1218ca8a16ac (patch)
tree4bbe58d26ae61614866aabe4b0936288739579c9
parent3994d5a52b8fa70637bffe4173f165267e6169fb (diff)
downloadbusybox-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.c2
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