diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2016-11-16 07:00:52 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2016-12-01 17:25:56 +0100 |
commit | 0b84f294904959a4be58db6fe0e89d71b2c1f401 (patch) | |
tree | f52c765644294f314ede33506f29b6888439b904 /ripngd/ripng_interface.c | |
parent | Merge branch 'stable/2.0' (diff) | |
download | frr-0b84f294904959a4be58db6fe0e89d71b2c1f401.tar.xz frr-0b84f294904959a4be58db6fe0e89d71b2c1f401.zip |
*: make DEFUN installations file-local
This moves all install_element calls into the file where the DEFUNs are
located. This fixes several small related bugs:
- ospf6d wasn't installing a "no interface FOO" command
- zebra had a useless copy of "interface FOO"
- pimd's copy of "interface FOO" was not setting qobj_index, which means
"description LINE" commands would fail with an error
The next commit will do the actual act of making "foo_cmd" static.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ripngd/ripng_interface.c')
-rw-r--r-- | ripngd/ripng_interface.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ripngd/ripng_interface.c b/ripngd/ripng_interface.c index 7bee7625d..393ca2e7a 100644 --- a/ripngd/ripng_interface.c +++ b/ripngd/ripng_interface.c @@ -1190,13 +1190,7 @@ ripng_if_init () /* Install interface node. */ install_node (&interface_node, interface_config_write); - - /* Install commands. */ - install_element (CONFIG_NODE, &interface_cmd); - install_element (CONFIG_NODE, &no_interface_cmd); - install_default (INTERFACE_NODE); - install_element (INTERFACE_NODE, &interface_desc_cmd); - install_element (INTERFACE_NODE, &no_interface_desc_cmd); + if_cmd_init (); install_element (RIPNG_NODE, &ripng_network_cmd); install_element (RIPNG_NODE, &no_ripng_network_cmd); |