summaryrefslogtreecommitdiffstats
path: root/bin/sh/expand.c
diff options
context:
space:
mode:
authorcracauer <cracauer@FreeBSD.org>1999-12-15 11:46:32 +0000
committercracauer <cracauer@FreeBSD.org>1999-12-15 11:46:32 +0000
commitea70a76b310978e21752eda8780f2e5c3a284bca (patch)
treea4dc1e787d43553feffe5698a260b38045127e69 /bin/sh/expand.c
parentfc793cf05b0b81793cfba6c8e586da1b80267149 (diff)
downloadFreeBSD-src-ea70a76b310978e21752eda8780f2e5c3a284bca.zip
FreeBSD-src-ea70a76b310978e21752eda8780f2e5c3a284bca.tar.gz
First round of 8-bit fixes.
Diffstat (limited to 'bin/sh/expand.c')
-rw-r--r--bin/sh/expand.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/sh/expand.c b/bin/sh/expand.c
index 5a1b57d..00c5f09 100644
--- a/bin/sh/expand.c
+++ b/bin/sh/expand.c
@@ -315,7 +315,7 @@ done:
goto lose;
*p = c;
while ((c = *home++) != '\0') {
- if (quotes && SQSYNTAX[(int)c] == CCTL)
+ if (quotes && c >= 0 && SQSYNTAX[(int)c] == CCTL)
STPUTC(CTLESC, expdest);
STPUTC(c, expdest);
}
@@ -478,7 +478,7 @@ expbackq(cmd, quoted, flag)
}
lastc = *p++;
if (lastc != '\0') {
- if (quotes && syntax[(int)lastc] == CCTL)
+ if (quotes && lastc >= 0 && syntax[(int)lastc] == CCTL)
STPUTC(CTLESC, dest);
STPUTC(lastc, dest);
}
@@ -694,7 +694,7 @@ again: /* jump here after setting a variable with ${var=text} */
}
else {
while (*val) {
- if (quotes &&
+ if (quotes && *val >= 0 &&
syntax[(int)*val] == CCTL)
STPUTC(CTLESC, expdest);
STPUTC(*val++, expdest);
@@ -866,7 +866,7 @@ varvalue(name, quoted, allow_split)
if (allow_split) { \
syntax = quoted? DQSYNTAX : BASESYNTAX; \
while (*p) { \
- if (syntax[(int)*p] == CCTL) \
+ if (*p >= 0 && syntax[(int)*p] == CCTL) \
STPUTC(CTLESC, expdest); \
STPUTC(*p++, expdest); \
} \
OpenPOWER on IntegriCloud