diff options
Diffstat (limited to 'zebra/zebra_snmp.c')
| -rw-r--r-- | zebra/zebra_snmp.c | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/zebra/zebra_snmp.c b/zebra/zebra_snmp.c index 1c6d58159e..5a99ac0500 100644 --- a/zebra/zebra_snmp.c +++ b/zebra/zebra_snmp.c @@ -253,9 +253,11 @@ static void check_replace(struct route_node *np2, struct route_entry *re2,  		return;  	} -	if (prefix_cmp(&(*np)->p, &np2->p) < 0) +	if (in_addr_cmp((uint8_t *)&(*np)->p.u.prefix4, +			(uint8_t *)&np2->p.u.prefix4) < 0)  		return; -	if (prefix_cmp(&(*np)->p, &np2->p) > 0) { +	if (in_addr_cmp((uint8_t *)&(*np)->p.u.prefix4, +			(uint8_t *)&np2->p.u.prefix4) > 0) {  		*np = np2;  		*re = re2;  		return;  | 
