Bugfix in password acceptance

This commit is contained in:
Ondrej Filip 2005-02-12 22:19:46 +00:00
parent 9912fa51c8
commit bae7c43ff3

View file

@ -164,7 +164,7 @@ ospf_pkt_checkauth(struct ospf_neighbor *n, struct ospf_iface *ifa, struct ospf_
WALK_LIST(ptmp, *(ifa->passwords)) WALK_LIST(ptmp, *(ifa->passwords))
{ {
if (pkt->u.md5.keyid != ptmp->id) continue; if (pkt->u.md5.keyid != ptmp->id) continue;
if ((ptmp->genfrom > now) || (ptmp->gento < now)) continue; if ((ptmp->accfrom > now) || (ptmp->accto < now)) continue;
pass = ptmp; pass = ptmp;
break; break;
} }
@ -278,7 +278,7 @@ ospf_rx_hook(sock * sk, int size)
if (ntohl(ps->areaid) != ifa->oa->areaid) if (ntohl(ps->areaid) != ifa->oa->areaid)
{ {
log(L_ERR "%s%I - other area %ld", mesg, sk->faddr, ps->areaid); log(L_ERR "%s%I - different area %ld", mesg, sk->faddr, ntohl(ps->areaid));
return 1; return 1;
} }