aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorvodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-19 11:23:34 +0000
committervodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-19 11:23:34 +0000
commitb8e068f95f486bb3c12d3c774244a0210b3fbbf8 (patch)
tree38552f46f6ae505798e9ab96b232348c94bc4b98 /shell
parente2b2956b5b1f26740fef0104ce9658f562cee263 (diff)
downloadbusybox-w32-b8e068f95f486bb3c12d3c774244a0210b3fbbf8.tar.gz
busybox-w32-b8e068f95f486bb3c12d3c774244a0210b3fbbf8.tar.bz2
busybox-w32-b8e068f95f486bb3c12d3c774244a0210b3fbbf8.zip
restore 8-bit syntax works, last debian patch is broken. Noticed by Vladimir Dronnikov
git-svn-id: svn://busybox.net/trunk/busybox@13421 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 0697a4785..db537c44d 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -5256,7 +5256,7 @@ memtodest(const char *p, size_t len, int syntax, int quotes) {
5256 q = makestrspace(len * 2, q); 5256 q = makestrspace(len * 2, q);
5257 5257
5258 while (len--) { 5258 while (len--) {
5259 int c = (unsigned char)*p++; 5259 int c = *p++;
5260 if (!c) 5260 if (!c)
5261 continue; 5261 continue;
5262 if (quotes && (SIT(c, syntax) == CCTL || SIT(c, syntax) == CBACK)) 5262 if (quotes && (SIT(c, syntax) == CCTL || SIT(c, syntax) == CBACK))