]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1405] minor changes
authorRazvan Becheriu <razvan@isc.org>
Thu, 15 Oct 2020 14:23:18 +0000 (17:23 +0300)
committerRazvan Becheriu <razvan@isc.org>
Wed, 18 Nov 2020 13:55:23 +0000 (15:55 +0200)
src/bin/dhcp6/dhcp6_parser.yy

index b99ce9a4d92727c9ab5e3679d0568d77d427646b..bad71cb34203f8568dad3a8e01f36215c14ee636 100644 (file)
@@ -1078,12 +1078,12 @@ mac_sources_value: duid_id
                  | string_id
                  ;
 
-duid_id : DUID {
+duid_id: DUID {
     ElementPtr duid(new StringElement("duid", ctx.loc2pos(@1)));
     ctx.stack_.back()->add(duid);
 };
 
-string_id : STRING {
+string_id: STRING {
     ElementPtr duid(new StringElement($1, ctx.loc2pos(@1)));
     ctx.stack_.back()->add(duid);
 };
@@ -1108,12 +1108,12 @@ host_reservation_identifier: duid_id
                            | flex_id
                            ;
 
-hw_address_id : HW_ADDRESS {
+hw_address_id: HW_ADDRESS {
     ElementPtr hwaddr(new StringElement("hw-address", ctx.loc2pos(@1)));
     ctx.stack_.back()->add(hwaddr);
 };
 
-flex_id : FLEX_ID {
+flex_id: FLEX_ID {
     ElementPtr flex_id(new StringElement("flex-id", ctx.loc2pos(@1)));
     ctx.stack_.back()->add(flex_id);
 };