summaryrefslogtreecommitdiffstats
path: root/zebra
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2016-12-05 20:28:24 +0100
committerDavid Lamparter <equinox@opensourcerouting.org>2016-12-05 20:28:24 +0100
commitd7d73ffc8f575a5fd24714dd121f40828eb61a41 (patch)
tree2c0e0fb7bbd9c759b5f41a87d8e074919ab90ee7 /zebra
parentMerge branch 'queue/osr/vtysh-generic' (diff)
downloadfrr-d7d73ffc8f575a5fd24714dd121f40828eb61a41.tar.xz
frr-d7d73ffc8f575a5fd24714dd121f40828eb61a41.zip
*: fix up DEFUNs without install_element calls
These now generate warnings which will break the build with -Werror. Note this may have enabled commands that should be disabled, or the other way around... Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'zebra')
-rw-r--r--zebra/interface.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/zebra/interface.c b/zebra/interface.c
index 93a059a7a..8eddd3062 100644
--- a/zebra/interface.c
+++ b/zebra/interface.c
@@ -2909,6 +2909,7 @@ zebra_if_init (void)
install_element(LINK_PARAMS_NODE, &link_params_enable_cmd);
install_element(LINK_PARAMS_NODE, &no_link_params_enable_cmd);
install_element(LINK_PARAMS_NODE, &link_params_metric_cmd);
+ install_element(LINK_PARAMS_NODE, &no_link_params_metric_cmd);
install_element(LINK_PARAMS_NODE, &link_params_maxbw_cmd);
install_element(LINK_PARAMS_NODE, &link_params_max_rsv_bw_cmd);
install_element(LINK_PARAMS_NODE, &link_params_unrsv_bw_cmd);