commit | e8b2bd4d47817b592c294d02a5dfaf2b81c6f31f | [log] [tgz] |
---|---|---|
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | Wed Jun 06 19:27:58 2007 +0000 |
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | Wed Jun 06 19:27:58 2007 +0000 |
tree | 65d1e3d695a3243620de5a1f08a872470abd39b2 | |
parent | ae5a8aac26d0fdd77218bb2ce336aa5f5ce82f9d [diff] [blame] |
- fix wrong not operator which was essentially ignored. got introduced in r18282 http://busybox.net/lists/busybox/2007-June/027652.html
diff --git a/coreutils/test.c b/coreutils/test.c index fd10e68..a09f7e6 100644 --- a/coreutils/test.c +++ b/coreutils/test.c
@@ -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];