diff options
author | Maria Matejka <mq@jmq.cz> | 2019-07-03 00:00:11 +0200 |
---|---|---|
committer | Maria Matejka <mq@jmq.cz> | 2019-07-03 00:00:11 +0200 |
commit | 78976974e711e52c3b8fa6a80b290cf2fa4f692d (patch) | |
tree | bac64a14c7131b6ae44551c77af47a6095ff591f /proto/radv/config.Y | |
parent | 263fa2c4a6bf226172a6aef9a6b8198a5901c5bf (diff) |
Dynamic attributes definition split whether it is bitmask or not.
Diffstat (limited to 'proto/radv/config.Y')
-rw-r--r-- | proto/radv/config.Y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/radv/config.Y b/proto/radv/config.Y index b8eeb439..53715f77 100644 --- a/proto/radv/config.Y +++ b/proto/radv/config.Y @@ -332,8 +332,8 @@ radv_sensitive: | SENSITIVE bool { $$ = $2; } ; -dynamic_attr: RA_PREFERENCE { $$ = f_new_dynamic_attr(EAF_TYPE_INT, 0, T_ENUM_RA_PREFERENCE, EA_RA_PREFERENCE); } ; -dynamic_attr: RA_LIFETIME { $$ = f_new_dynamic_attr(EAF_TYPE_INT, 0, T_INT, EA_RA_LIFETIME); } ; +dynamic_attr: RA_PREFERENCE { $$ = f_new_dynamic_attr(EAF_TYPE_INT, T_ENUM_RA_PREFERENCE, EA_RA_PREFERENCE); } ; +dynamic_attr: RA_LIFETIME { $$ = f_new_dynamic_attr(EAF_TYPE_INT, T_INT, EA_RA_LIFETIME); } ; CF_CODE |