From 365f392d3c1e2e204bbb466469a5e56cf7a10ec5 Mon Sep 17 00:00:00 2001 From: FRIGN Date: Tue, 29 Sep 2015 23:40:20 +0200 Subject: [PATCH] Properly handle namedict in od(1) I added the [127]-index but forgot that this increases the length, breaking a later check. --- od.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/od.c b/od.c index 407f550..8e71b60 100644 --- a/od.c +++ b/od.c @@ -36,7 +36,6 @@ printchar(FILE *f, unsigned char c) "so", "si", "dle", "dc1", "dc2", "dc3", "dc4", "nak", "syn", "etb", "can", "em", "sub", "esc", "fs", "gs", "rs", "us", "sp", - [127] = "del" }; const char *escdict[] = { ['\0'] = "\\0", ['\a'] = "\\a", @@ -56,7 +55,7 @@ printchar(FILE *f, unsigned char c) case 'a': c &= ~128; /* clear high bit as required by standard */ if (c < LEN(namedict) || c == 127) { - fprintf(f, "%3s ", namedict[c]); + fprintf(f, "%3s ", (c == 127) ? "del" : namedict[c]); return; } break;