]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1197] Updated dep_qualifying_suffix
authorFrancis Dupont <fdupont@isc.org>
Wed, 2 Sep 2020 15:19:52 +0000 (17:19 +0200)
committerFrancis Dupont <fdupont@isc.org>
Wed, 2 Sep 2020 15:19:52 +0000 (17:19 +0200)
src/bin/dhcp6/dhcp6_parser.yy

index ccabe4e0c4a1056de47a9a8dda130cfded595566..a52ce8906f01236a56e961102f094edd25dfb64c 100644 (file)
@@ -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)));