From: Martin Mares Date: Wed, 8 Jul 2015 17:15:56 +0000 (+0200) Subject: Fastbuf: fw-hex escapes DEL, too X-Git-Tag: v6.5~24 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=bed50329bc0e5c0b9eff7762d14a90d41ac1b108;p=libucw.git Fastbuf: fw-hex escapes DEL, too --- diff --git a/ucw/fw-hex.c b/ucw/fw-hex.c index 18e70ced..cd55be5e 100644 --- a/ucw/fw-hex.c +++ b/ucw/fw-hex.c @@ -29,7 +29,7 @@ fb_hex_spout(struct fastbuf *f) for (byte *p = f->buffer; p < f->bptr; p++) { uint c = *p; - if (c >= 0x21 && c <= 0x7f && c != '<' && c != '>') + if (c >= 0x21 && c <= 0x7e && c != '<' && c != '>') bputc(orig, c); else bprintf(orig, "<%02x>", c);