From: Denys Vlasenko Date: Thu, 13 Dec 2018 16:46:26 +0000 (+0100) Subject: bc: fix a thinko: dc uses [] string delimiters, bot bc! X-Git-Tag: 1_30_0~186 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=335b4efd2f5627b52290e0a6320bab4e6b3aa568;p=oweals%2Fbusybox.git bc: fix a thinko: dc uses [] string delimiters, bot bc! Signed-off-by: Denys Vlasenko --- diff --git a/miscutils/bc.c b/miscutils/bc.c index dc9a7da8e..a78cd591a 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c @@ -7076,9 +7076,9 @@ static BC_STATUS zbc_vm_stdin(void) char c = *string; if (string != buf.v && string[-1] != '\\') { // checking applet type is cheaper than accessing sbgn/send - if (IS_DC) // dc: sbgn = send = '"' + if (IS_BC) // bc: sbgn = send = '"' str ^= (c == '"'); - else { // bc: sbgn = '[', send = ']' + else { // dc: sbgn = '[', send = ']' if (c == ']') str -= 1; else if (c == '[')