From: Francis Dupont Date: Wed, 2 Sep 2020 15:19:52 +0000 (+0200) Subject: [#1197] Updated dep_qualifying_suffix X-Git-Tag: Kea-1.9.0~171 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b185017c121feec6c212c7a27e51a3ce028d4bf0;p=thirdparty%2Fkea.git [#1197] Updated dep_qualifying_suffix --- diff --git a/src/bin/dhcp6/dhcp6_parser.yy b/src/bin/dhcp6/dhcp6_parser.yy index ccabe4e0c4..a52ce8906f 100644 --- a/src/bin/dhcp6/dhcp6_parser.yy +++ b/src/bin/dhcp6/dhcp6_parser.yy @@ -2275,7 +2275,6 @@ dhcp_ddns_params: dhcp_ddns_param ; dhcp_ddns_param: enable_updates - | qualifying_suffix | server_ip | server_port | sender_ip @@ -2287,6 +2286,7 @@ dhcp_ddns_param: enable_updates | dep_override_client_update | dep_replace_client_name | dep_generated_prefix + | dep_qualifying_suffix | dep_hostname_char_set | dep_hostname_char_replacement | user_context @@ -2299,7 +2299,8 @@ enable_updates: ENABLE_UPDATES COLON BOOLEAN { ctx.stack_.back()->set("enable-updates", b); }; -qualifying_suffix: QUALIFYING_SUFFIX { +// Deprecated, moved to global/network scopes. Eventually it should be removed. +dep_qualifying_suffix: QUALIFYING_SUFFIX { ctx.enter(ctx.NO_KEYWORD); } COLON STRING { ElementPtr s(new StringElement($4, ctx.loc2pos(@4)));