am 3277dc26: am 2d03a498: Merge "correct the setenv option judging condition"
* commit '3277dc269820e4d8785ea46d6a196145e7c88b78':
correct the setenv option judging condition
diff --git a/init/init_parser.c b/init/init_parser.c
index 02e5bdc..7800082 100644
--- a/init/init_parser.c
+++ b/init/init_parser.c
@@ -760,7 +760,7 @@
break;
case K_setenv: { /* name value */
struct svcenvinfo *ei;
- if (nargs < 2) {
+ if (nargs < 3) {
parse_error(state, "setenv option requires name and value arguments\n");
break;
}