Index: usr.bin/iscsictl/parse.y =================================================================== --- usr.bin/iscsictl/parse.y +++ usr.bin/iscsictl/parse.y @@ -55,7 +55,6 @@ static struct target *target; extern void yyerror(const char *); -extern int yylex(void); extern void yyrestart(FILE *); %} @@ -360,7 +359,7 @@ free($3); return(1); } - if (!((tmp >=0) && (tmp <= 7))) { + if (tmp > 7) { yyerror("invalid pcp value"); return(1); }