mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-17 08:38:42 +00:00
Function pm_path_compare() checked just length of the bgpmasks
This commit is contained in:
parent
d59405ec66
commit
43de796b8a
@ -64,6 +64,8 @@ pm_path_compare(struct f_path_mask *m1, struct f_path_mask *m2)
|
||||
while (1) {
|
||||
if ((!m1) || (!m2))
|
||||
return !((!m1) && (!m2));
|
||||
|
||||
if ((m1->kind != m2->kind) || (m1->val != m2->val)) return 1;
|
||||
m1 = m1->next;
|
||||
m2 = m2->next;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user