svn commit: branches/busybox_1_6_stable/coreutils

aldot at busybox.net aldot at busybox.net
Wed Jun 6 12:30:14 PDT 2007


Author: aldot
Date: 2007-06-06 12:30:12 -0700 (Wed, 06 Jun 2007)
New Revision: 18759

Log:
- pull r18758 from trunk: fix wrong not operator which was essentially ignored.


Modified:
   branches/busybox_1_6_stable/coreutils/test.c


Changeset:
Modified: branches/busybox_1_6_stable/coreutils/test.c
===================================================================
--- branches/busybox_1_6_stable/coreutils/test.c	2007-06-06 19:27:58 UTC (rev 18758)
+++ branches/busybox_1_6_stable/coreutils/test.c	2007-06-06 19:30:12 UTC (rev 18759)
@@ -227,7 +227,7 @@
 		t_lex(argv[2 + _off]);
 		if (t_wp_op && t_wp_op->op_type == BINOP) {
 			t_wp = &argv[1 + _off];
-			return binop() == 0;
+			return binop() == 1;
 		}
 	}
 	t_wp = &argv[1];



More information about the busybox-cvs mailing list