svn commit: r247753 - head/usr.bin/hexdump

Eitan Adler eadler at FreeBSD.org
Mon Mar 4 02:21:06 UTC 2013


Author: eadler
Date: Mon Mar  4 02:21:06 2013
New Revision: 247753
URL: http://svnweb.freebsd.org/changeset/base/247753

Log:
  Fix typo ('1' != 'l')
  
  PR:		bin/175975
  Submitted by:	William Ahern <william at 25thandclement.com>
  Approved by:	cperciva (mentor)

Modified:
  head/usr.bin/hexdump/conv.c

Modified: head/usr.bin/hexdump/conv.c
==============================================================================
--- head/usr.bin/hexdump/conv.c	Mon Mar  4 02:21:03 2013	(r247752)
+++ head/usr.bin/hexdump/conv.c	Mon Mar  4 02:21:06 2013	(r247753)
@@ -151,7 +151,7 @@ conv_u(PR *pr, u_char *p)
 	static char const * list[] = {
 		"nul", "soh", "stx", "etx", "eot", "enq", "ack", "bel",
 		 "bs",  "ht",  "lf",  "vt",  "ff",  "cr",  "so",  "si",
-		"dle", "dcl", "dc2", "dc3", "dc4", "nak", "syn", "etb",
+		"dle", "dc1", "dc2", "dc3", "dc4", "nak", "syn", "etb",
 		"can",  "em", "sub", "esc",  "fs",  "gs",  "rs",  "us",
 	};
 


More information about the svn-src-all mailing list