correct the setenv option judging condition

Change-Id: I10ed6275374f572da639f26611f607bf7607905c
This commit is contained in:
Gavin.Chang 2013-09-28 00:22:11 +08:00 committed by Colin Cross
parent bc741ac212
commit c3a4676c7f

View file

@ -760,7 +760,7 @@ static void parse_line_service(struct parse_state *state, int nargs, char **args
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;
}