diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-05-10 14:48:06 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-05-10 14:48:06 +0200 |
commit | b8524e9be4f1d15f4cd2cd365d7842eff8d5a499 (patch) | |
tree | c4c1107e60c3395145dc8bd8791a0ae4129b6df9 | |
parent | 0bff946c0a29469b669939813e5a2861c1f010fb (diff) | |
download | bird-b8524e9be4f1d15f4cd2cd365d7842eff8d5a499.tar bird-b8524e9be4f1d15f4cd2cd365d7842eff8d5a499.zip |
ipa_same does not exist.
-rw-r--r-- | proto/rip/rip.c | 2 |
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; } |