From: "Vladimir N. Oleynik" Date: Thu, 19 Jan 2006 11:23:34 +0000 (-0000) Subject: restore 8-bit syntax works, last debian patch is broken. Noticed by Vladimir Dronnikov X-Git-Tag: 1_1_0~336 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=cfc8f596496937e4c08081e15e8c27b8ef166e59;p=oweals%2Fbusybox.git restore 8-bit syntax works, last debian patch is broken. Noticed by Vladimir Dronnikov --- 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))