diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-03-01 15:42:59 +0100 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-03-01 15:42:59 +0100 |
commit | 62ab789de5f5ace97a93fce551469f0229ba8c92 (patch) | |
tree | f5f399996b90ce9cd067d90f2b08d671b2e3cafd /proto/rip | |
parent | 31e79264a21df1acdbfbb66af40e05073b115a2c (diff) | |
download | bird-62ab789de5f5ace97a93fce551469f0229ba8c92.tar bird-62ab789de5f5ace97a93fce551469f0229ba8c92.zip |
Added type parameter to f_new_dynamic_attr.
Diffstat (limited to 'proto/rip')
-rw-r--r-- | proto/rip/config.Y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/rip/config.Y b/proto/rip/config.Y index e1094a5..99b0f9a 100644 --- a/proto/rip/config.Y +++ b/proto/rip/config.Y @@ -98,8 +98,8 @@ rip_iface_list: | rip_iface_list ',' rip_iface ; -CF_ADDTO(dynamic_attr, RIP_METRIC { $$ = f_new_dynamic_attr(EA_RIP_METRIC); }) -CF_ADDTO(dynamic_attr, RIP_TAG { $$ = f_new_dynamic_attr(EA_RIP_TAG); }) +CF_ADDTO(dynamic_attr, RIP_METRIC { $$ = f_new_dynamic_attr(EAF_TYPE_INT | EAF_INLINE, EA_RIP_METRIC); }) +CF_ADDTO(dynamic_attr, RIP_TAG { $$ = f_new_dynamic_attr(EAF_TYPE_INT | EAF_INLINE, EA_RIP_TAG); }) CF_CODE |