svn commit: trunk/busybox/coreutils

vda at busybox.net vda at busybox.net
Sun Dec 17 19:21:13 UTC 2006


Author: vda
Date: 2006-12-17 11:21:13 -0800 (Sun, 17 Dec 2006)
New Revision: 16984

Log:
od: remove bug-for-bug compat (because the bug was fixed in coreuitls)


Modified:
   trunk/busybox/coreutils/od_bloaty.c


Changeset:
Modified: trunk/busybox/coreutils/od_bloaty.c
===================================================================
--- trunk/busybox/coreutils/od_bloaty.c	2006-12-17 19:08:20 UTC (rev 16983)
+++ trunk/busybox/coreutils/od_bloaty.c	2006-12-17 19:21:13 UTC (rev 16984)
@@ -866,8 +866,7 @@
 {
 	putchar('(');
 	format_address_std(address, ')');
-	/* BUG in coreutils 5.2.1! must be "if (c) putchar(c);" */
-	putchar(c);
+	if (c) putchar(c);
 }
 
 static void




More information about the busybox-cvs mailing list