freebsd-ports/sysutils/u-boot-pandaboard/files/patch-common_cmd__test.c
Ian Lepore 04bee987e3 Add a U-Boot port for Pandaboard.
PR:		196486
Submitted by:	Scott Ellis
Approved by:	bapt
2015-02-21 21:42:39 +00:00

19 lines
485 B
C

--- common/cmd_test.c.orig 2014-10-14 08:47:15 UTC
+++ common/cmd_test.c
@@ -65,9 +65,14 @@ static int do_test(cmd_tbl_t *cmdtp, int
char * const *ap;
int i, op, left, adv, expr, last_expr, last_unop, last_binop;
- /* args? */
- if (argc < 3)
+ /*
+ * If no args, that's bogus, return false.
+ * If op is -z and no other args, answer is Yes, string is empty.
+ */
+ if (argc < 2)
return 1;
+ else if (argc == 2)
+ return !(strcmp(argv[1], "-z") == 0);
#ifdef DEBUG
{