From cfc8f596496937e4c08081e15e8c27b8ef166e59 Mon Sep 17 00:00:00 2001 From: "\"Vladimir N. Oleynik\"" Date: Thu, 19 Jan 2006 11:23:34 +0000 Subject: [PATCH] restore 8-bit syntax works, last debian patch is broken. Noticed by Vladimir Dronnikov --- shell/ash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.25.1