summaryrefslogtreecommitdiffstats
path: root/isisd/isis_route.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-02-24 15:32:47 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-02-24 15:32:47 +0100
commit3f3169a2e6d9d710135ea54100b3517fae59290c (patch)
treef4ff6b26113a4e8c2d6e1c479b1b5c61ce0a4936 /isisd/isis_route.c
parentMerge branch 'frr/pull/210' ("tools: frr-reload removes "ipv6 nd ra-interval"... (diff)
parentMerge pull request #221 from LabNConsulting/working/2.0/patch/issue-218 (diff)
downloadfrr-3f3169a2e6d9d710135ea54100b3517fae59290c.tar.xz
frr-3f3169a2e6d9d710135ea54100b3517fae59290c.zip
Merge remote-tracking branch 'origin/stable/2.0'
Diffstat (limited to 'isisd/isis_route.c')
-rw-r--r--isisd/isis_route.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/isisd/isis_route.c b/isisd/isis_route.c
index b2b858feb..4f82edaef 100644
--- a/isisd/isis_route.c
+++ b/isisd/isis_route.c
@@ -570,6 +570,12 @@ isis_route_validate_merge (struct isis_area *area, int family)
table = area->route_table[0];
else if (family == AF_INET6)
table = area->route_table6[0];
+ else
+ {
+ zlog_warn ("ISIS-Rte (%s) %s called for unknown family %d",
+ area->area_tag, __func__, family);
+ return;
+ }
for (rnode = route_top (table); rnode; rnode = route_next (rnode))
{