diff options
author | Martin Mares <mj@ucw.cz> | 2000-03-04 22:30:44 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-03-04 22:30:44 +0000 |
commit | 9f4929e749d945c727f245ed7ef30c557124c352 (patch) | |
tree | c95402b0e521b61a9f45ac39c6f24228330e9ffd /proto/rip/config.Y | |
parent | b9626ec6eaf299b889f52d017d025f356b43371a (diff) |
Renamed EAF_INLINE to EAF_TEMP to make the name reflect the real meaning.
Diffstat (limited to 'proto/rip/config.Y')
-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 99b0f9a4..6e9a72a9 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(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_ADDTO(dynamic_attr, RIP_METRIC { $$ = f_new_dynamic_attr(EAF_TYPE_INT | EAF_TEMP, EA_RIP_METRIC); }) +CF_ADDTO(dynamic_attr, RIP_TAG { $$ = f_new_dynamic_attr(EAF_TYPE_INT | EAF_TEMP, EA_RIP_TAG); }) CF_CODE |