diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-01-19 11:23:34 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-01-19 11:23:34 +0000 |
commit | cfc8f596496937e4c08081e15e8c27b8ef166e59 (patch) | |
tree | 38552f46f6ae505798e9ab96b232348c94bc4b98 /shell | |
parent | b565a12cf86db108510a04761cc4ad262eef3b2a (diff) | |
download | busybox-w32-cfc8f596496937e4c08081e15e8c27b8ef166e59.tar.gz busybox-w32-cfc8f596496937e4c08081e15e8c27b8ef166e59.tar.bz2 busybox-w32-cfc8f596496937e4c08081e15e8c27b8ef166e59.zip |
restore 8-bit syntax works, last debian patch is broken. Noticed by Vladimir Dronnikov
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 2 |
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)) |