summaryrefslogtreecommitdiffstats
path: root/proto/rip
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>2000-05-10 14:48:06 +0200
committerPavel Machek <pavel@ucw.cz>2000-05-10 14:48:06 +0200
commitb8524e9be4f1d15f4cd2cd365d7842eff8d5a499 (patch)
treec4c1107e60c3395145dc8bd8791a0ae4129b6df9 /proto/rip
parent0bff946c0a29469b669939813e5a2861c1f010fb (diff)
downloadbird-b8524e9be4f1d15f4cd2cd365d7842eff8d5a499.tar
bird-b8524e9be4f1d15f4cd2cd365d7842eff8d5a499.zip
ipa_same does not exist.
Diffstat (limited to 'proto/rip')
-rw-r--r--proto/rip/rip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c
index dd76ef8..17d0d5a 100644
--- a/proto/rip/rip.c
+++ b/proto/rip/rip.c
@@ -412,7 +412,7 @@ rip_rx(sock *s, int size)
num = size / sizeof( struct rip_block );
if (num>PACKET_MAX) BAD( "Too many blocks" );
- if (ipa_same(i->iface->addr->ip, s->faddr)) {
+ if (ipa_equal(i->iface->addr->ip, s->faddr)) {
DBG("My own packet\n");
return 1;
}