aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-12-13 17:46:26 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-12-13 17:46:26 +0100
commit335b4efd2f5627b52290e0a6320bab4e6b3aa568 (patch)
tree9ec918bd506c2800331e18640dcfea5808cb0cbb
parent766f67250f01dc5458093c31ec0d2ec09cad65a2 (diff)
downloadbusybox-335b4efd2f5627b52290e0a6320bab4e6b3aa568.tar.gz
bc: fix a thinko: dc uses [] string delimiters, bot bc!
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--miscutils/bc.c4
1 files changed, 2 insertions, 2 deletions
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 == '[')