aboutsummaryrefslogtreecommitdiff
path: root/hush.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-05-02 17:52:49 +0000
committerMatt Kraai <kraai@debian.org>2001-05-02 17:52:49 +0000
commit20a3069ec0d1c242404e089cecfcc5bb7a88df0f (patch)
treefd57efa2b1398ccd505d5fbae2c2fd83798921e2 /hush.c
parent19ec9ee91e21bff2b1eb76a0633c79045eb0acee (diff)
downloadbusybox-20a3069ec0d1c242404e089cecfcc5bb7a88df0f.tar.gz
Don't treat newline as pipe separator when processing substitutions.
Diffstat (limited to 'hush.c')
-rw-r--r--hush.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/hush.c b/hush.c
index c55d86f5d..01fd33486 100644
--- a/hush.c
+++ b/hush.c
@@ -2010,7 +2010,10 @@ int parse_stream(o_string *dest, struct p_context *ctx,
} else {
if (m==2) { /* unquoted IFS */
done_word(dest, ctx);
- if (ch=='\n') done_pipe(ctx,PIPE_SEQ);
+ /* If we aren't performing a substitution, treat a newline as a
+ * command separator. */
+ if (end_trigger != '\0' && ch=='\n')
+ done_pipe(ctx,PIPE_SEQ);
}
if (ch == end_trigger && !dest->quote && ctx->w==RES_NONE) {
debug_printf("leaving parse_stream\n");