This commit is contained in:
enkechen-panw 2025-04-29 16:20:41 +00:00 committed by GitHub
commit 8a87da8c51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1122,6 +1122,9 @@ static bool compare_state(struct route_entry *r1,
if ((!r1 && r2) || (r1 && !r2))
return true;
if (r1->type != r2->type)
return true;
if (r1->distance != r2->distance)
return true;