From c3eb33731d90559dfe8ed0bc43ab43e24bca96c5 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Wed, 6 Jun 2007 19:30:12 +0000 Subject: [PATCH] - pull r18758 from trunk: fix wrong not operator which was essentially ignored. --- coreutils/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreutils/test.c b/coreutils/test.c index fd10e6845..a09f7e6ec 100644 --- a/coreutils/test.c +++ b/coreutils/test.c @@ -227,7 +227,7 @@ int bb_test(int argc, char **argv) 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]; -- 2.25.1