Minor bug that appears only in debug mode.

This commit is contained in:
Ondrej Filip 2010-06-02 12:11:20 +02:00
parent 9ef239946b
commit 4461b89791

View file

@ -886,7 +886,7 @@ check_ext_lsa(struct top_hash_entry *en, struct fib_node *fn, u32 metric, ip_add
if (fn->pxlen != ipa_mklen(ext->netmask)) if (fn->pxlen != ipa_mklen(ext->netmask))
return -1; return -1;
return (ext->metric == metric) && (ext->tag == tag) && (ext->fwaddr == fwaddr); return (ext->metric == metric) && (ext->tag == tag) && ipa_equal(ext->fwaddr,fwaddr);
} }
#else /* OSPFv3 */ #else /* OSPFv3 */