ospf6d: prefix structure compare changes.

Description:
Code changes involve replacing memcmp with prefix_same,
for comparing prefix structures.

Signed-off-by: Manoj Naragund <mnaragund@vmware.com>
This commit is contained in:
Manoj Naragund 2021-10-22 00:46:27 -07:00
parent d214b64afa
commit a48bc483b0

View File

@ -580,9 +580,7 @@ ospf6_route_lookup_identical(struct ospf6_route *route,
for (target = ospf6_route_lookup(&route->prefix, table); target; for (target = ospf6_route_lookup(&route->prefix, table); target;
target = target->next) { target = target->next) {
if (target->type == route->type if (target->type == route->type
&& (memcmp(&target->prefix, &route->prefix, && prefix_same(&target->prefix, &route->prefix)
sizeof(struct prefix))
== 0)
&& target->path.type == route->path.type && target->path.type == route->path.type
&& target->path.cost == route->path.cost && target->path.cost == route->path.cost
&& target->path.u.cost_e2 == route->path.u.cost_e2 && target->path.u.cost_e2 == route->path.u.cost_e2