[PATCH] od: bugfix: "\v" was omitted from output of type 'c'

From: Greg Reagle <greg.reagle_AT_umbc.edu>
Date: Fri, 2 Oct 2015 09:29:38 -0400

---
 od.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/od.c b/od.c
index 9521605..d2914a9 100644
--- a/od.c
+++ b/od.c
_AT_@ -56,7 +56,7 @@ printchar(FILE *f, unsigned char c)
 		}
 		break;
 	case 'c':
-		if (strchr("\a\b\t\n\b\f\r\0", c)) {
+		if (strchr("\a\b\t\n\v\b\f\r\0", c)) {
 			fprintf(f, "%3s ", escdict[c]);
 		} else {
 			fprintf(f, "%3c ", c);
-- 
1.9.1
--------------090308090109060305010902--
Received on Mon Sep 17 2001 - 00:00:00 CEST

This archive was generated by hypermail 2.3.0 : Fri Oct 02 2015 - 15:36:11 CEST