aboutsummaryrefslogtreecommitdiff
path: root/src/dhcpd-gram.y
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2020-06-28 08:44:16 +0300
committerSergey Poznyakoff <gray@gnu.org>2020-06-28 08:44:16 +0300
commiteb98370ae03aa778d0a69df83f6f4a5cecff0b38 (patch)
treedac4ea49252fe62631cf30f5ef72d3abbdf4270b /src/dhcpd-gram.y
parent893d875a4065acb757fef55876c391b1dd070041 (diff)
downloadgrecs-eb98370ae03aa778d0a69df83f6f4a5cecff0b38.tar.gz
grecs-eb98370ae03aa778d0a69df83f6f4a5cecff0b38.tar.bz2
Use %define parse.error verbose in parsers, instead of the deprecated %error-verbose
Diffstat (limited to 'src/dhcpd-gram.y')
-rw-r--r--src/dhcpd-gram.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dhcpd-gram.y b/src/dhcpd-gram.y
index 11dd1b2..61e4851 100644
--- a/src/dhcpd-gram.y
+++ b/src/dhcpd-gram.y
@@ -46,13 +46,13 @@ make_string_value(char *string)
val->v.string = string;
return val;
}
%}
-%error-verbose
+%define parse.error verbose
%locations
%union {
char *string;
grecs_value_t svalue, *pvalue;
struct grecs_list *list;

Return to:

Send suggestions and report system problems to the System administrator.