diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2019-08-06 22:13:38 +0200 |
---|---|---|
committer | Renato Westphal <renato@opensourcerouting.org> | 2019-08-21 05:57:17 +0200 |
commit | 6fa6324d4bc3dd7ed9ad5702fb44334abe485236 (patch) | |
tree | 70fa40a0c07fa2f1fada38ee8fd9ee25eafe8ef9 /isisd | |
parent | Merge pull request #4835 from vishaldhingra/ipv4_linklocal (diff) | |
download | frr-6fa6324d4bc3dd7ed9ad5702fb44334abe485236.tar.xz frr-6fa6324d4bc3dd7ed9ad5702fb44334abe485236.zip |
isisd: remove unused struct fields
These fields were introduced by commit e38e0df01ad, but they were
never put to any use. Remove them.
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'isisd')
-rw-r--r-- | isisd/isis_route.c | 2 | ||||
-rw-r--r-- | isisd/isis_route.h | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/isisd/isis_route.c b/isisd/isis_route.c index 281eaf11b..238555d15 100644 --- a/isisd/isis_route.c +++ b/isisd/isis_route.c @@ -174,7 +174,6 @@ static void adjinfo2nexthop(struct list *nexthops, struct isis_adjacency *adj) adj->circuit->interface->ifindex)) { nh = isis_nexthop_create( ipv4_addr, adj->circuit->interface->ifindex); - nh->router_address = adj->router_address; listnode_add(nexthops, nh); return; } @@ -191,7 +190,6 @@ static void adjinfo2nexthop6(struct list *nexthops6, struct isis_adjacency *adj) adj->circuit->interface->ifindex)) { nh6 = isis_nexthop6_create( ipv6_addr, adj->circuit->interface->ifindex); - nh6->router_address6 = adj->router_address6; listnode_add(nexthops6, nh6); return; } diff --git a/isisd/isis_route.h b/isisd/isis_route.h index 9d6858586..bb6313ad2 100644 --- a/isisd/isis_route.h +++ b/isisd/isis_route.h @@ -28,14 +28,12 @@ struct isis_nexthop6 { ifindex_t ifindex; struct in6_addr ip6; - struct in6_addr router_address6; unsigned int lock; }; struct isis_nexthop { ifindex_t ifindex; struct in_addr ip; - struct in_addr router_address; unsigned int lock; }; |