From b8e068f95f486bb3c12d3c774244a0210b3fbbf8 Mon Sep 17 00:00:00 2001 From: vodz Date: Thu, 19 Jan 2006 11:23:34 +0000 Subject: 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 --- shell/ash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell') 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) { q = makestrspace(len * 2, q); while (len--) { - int c = (unsigned char)*p++; + int c = *p++; if (!c) continue; if (quotes && (SIT(c, syntax) == CCTL || SIT(c, syntax) == CBACK)) -- cgit v1.2.3-55-g6feb