summaryrefslogtreecommitdiff
path: root/src/cli_parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli_parse.y')
-rw-r--r--src/cli_parse.y9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/cli_parse.y b/src/cli_parse.y
index db56d3e..0f32928 100644
--- a/src/cli_parse.y
+++ b/src/cli_parse.y
@@ -174,21 +174,18 @@ default_cause: DEFAULT STRING
yy_cli_parse_error((const char *)"Bad default\n");
parse_defp->def_default = $2;
}
-
priority_stmt: PRIORITY VALUE
{
char *tmp = $2.val;
- long long int cval = 0;
+ long long int cval = 0;
char *endp = NULL;
errno = 0;
cval = strtoll(tmp, &endp, 10);
- if (($2.val_type != INT_TYPE)
- || (errno == ERANGE
+ if ((errno == ERANGE
&& (cval == LLONG_MAX || cval == LLONG_MIN))
|| (errno != 0 && cval == 0)
|| (*endp != '\0') || (cval < 0) || (cval > UINT_MAX)) {
- yy_cli_parse_error((const char *)
- "Priority must be <u32>\n");
+ parse_defp->def_priority_ext = tmp;
} else {
parse_defp->def_priority = cval;
}