[git commit] hush: add missed "undef"

Denys Vlasenko vda.linux at googlemail.com
Tue Jul 27 02:09:45 UTC 2021


commit: https://git.busybox.net/busybox/commit/?id=8dd676c6c3b862846a4a215f5f3a8822fcf8c569
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 shell/hush.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/shell/hush.c b/shell/hush.c
index af6a9a73e..6b910569f 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -4922,11 +4922,11 @@ static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsign
 
 #if BASH_DOLLAR_SQUOTE
 /* Return code: 1 for "found and parsed", 0 for "seen something else" */
-#if BB_MMU
+# if BB_MMU
 #define parse_dollar_squote(as_string, dest, input) \
 	parse_dollar_squote(dest, input)
 #define as_string NULL
-#endif
+# endif
 static int parse_dollar_squote(o_string *as_string, o_string *dest, struct in_str *input)
 {
 	int start;
@@ -5009,6 +5009,7 @@ static int parse_dollar_squote(o_string *as_string, o_string *dest, struct in_st
 	}
 
 	return 1;
+# undef as_string
 }
 #else
 # #define parse_dollar_squote(as_string, dest, input) 0
@@ -5949,7 +5950,6 @@ static struct pipe *parse_stream(char **pstring,
 			if (ctx.ctx_res_w == RES_MATCH)
 				goto case_semi;
 #endif
-
 		case '}':
 			/* proper use of this character is caught by end_trigger:
 			 * if we see {, we call parse_group(..., end_trigger='}')


More information about the busybox-cvs mailing list