summaryrefslogtreecommitdiffstats
path: root/ospf6d
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-01-27 21:33:00 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-01-27 21:52:12 +0100
commit40d1cbfbb3c30688f96e6982dc56ec313a708333 (patch)
treef689c6343130ddb077e2ba2617e9bc1a1da40b4f /ospf6d
parentlib: Fix Auto generation of redistribution strings (diff)
downloadfrr-40d1cbfbb3c30688f96e6982dc56ec313a708333.tar.xz
frr-40d1cbfbb3c30688f96e6982dc56ec313a708333.zip
*: Fix redistribute issue
Somewhere in the past we switched from using the auto-generated redistribute statements to a non-generated version. This caused us to loose new protocols to redistribute as they are added. Put it back. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ospf6d')
-rw-r--r--ospf6d/ospf6_asbr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ospf6d/ospf6_asbr.c b/ospf6d/ospf6_asbr.c
index 74c4802f2..88cc07e1a 100644
--- a/ospf6d/ospf6_asbr.c
+++ b/ospf6d/ospf6_asbr.c
@@ -686,7 +686,7 @@ ospf6_asbr_redistribute_remove (int type, ifindex_t ifindex,
DEFUN (ospf6_redistribute,
ospf6_redistribute_cmd,
- "redistribute <kernel|connected|static|ripng|isis|bgp|table>",
+ "redistribute " FRR_REDIST_STR_OSPF6D,
"Redistribute\n"
FRR_REDIST_HELP_STR_OSPF6D)
{
@@ -704,7 +704,7 @@ DEFUN (ospf6_redistribute,
DEFUN (ospf6_redistribute_routemap,
ospf6_redistribute_routemap_cmd,
- "redistribute <kernel|connected|static|ripng|isis|bgp|table> route-map WORD",
+ "redistribute " FRR_REDIST_STR_OSPF6D " route-map WORD",
"Redistribute\n"
FRR_REDIST_HELP_STR_OSPF6D
"Route map reference\n"
@@ -727,7 +727,7 @@ DEFUN (ospf6_redistribute_routemap,
DEFUN (no_ospf6_redistribute,
no_ospf6_redistribute_cmd,
- "no redistribute <kernel|connected|static|ripng|isis|bgp|table> [route-map WORD]",
+ "no redistribute " FRR_REDIST_STR_OSPF6D " [route-map WORD]",
NO_STR
"Redistribute\n"
FRR_REDIST_HELP_STR_OSPF6D