svn commit: trunk/busybox/coreutils

landley at busybox.net landley at busybox.net
Mon Mar 27 17:00:14 UTC 2006


Author: landley
Date: 2006-03-27 09:00:11 -0800 (Mon, 27 Mar 2006)
New Revision: 14666

Log:
Turn #if 0 into a comment.


Modified:
   trunk/busybox/coreutils/cmp.c


Changeset:
Modified: trunk/busybox/coreutils/cmp.c
===================================================================
--- trunk/busybox/coreutils/cmp.c	2006-03-27 16:42:33 UTC (rev 14665)
+++ trunk/busybox/coreutils/cmp.c	2006-03-27 17:00:11 UTC (rev 14666)
@@ -52,11 +52,8 @@
 
 static const char fmt_eof[] = "cmp: EOF on %s\n";
 static const char fmt_differ[] = "%s %s differ: char %d, line %d\n";
-#if 0
-static const char fmt_l_opt[] = "%.0s%.0s%d %o %o\n";	/* SUSv3 format */
-#else
-static const char fmt_l_opt[] = "%.0s%.0s%d %3o %3o\n";	/* nicer gnu format */
-#endif
+// This fmt_l_opt uses gnu-isms.  SUSv3 would be "%.0s%.0s%d %o %o\n"
+static const char fmt_l_opt[] = "%.0s%.0s%d %3o %3o\n";
 
 static const char opt_chars[] = "sl";
 




More information about the busybox-cvs mailing list