diff options
author | Ondrej Filip <feela@network.cz> | 2000-06-08 21:16:21 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-06-08 21:16:21 +0200 |
commit | a012cbb16f3d73ca7ffafe6f7933de7369e2ee48 (patch) | |
tree | becd5d21d1b0b7224cd8df2c6c875d68241df61f | |
parent | 135857e5777a4f1762fa6d948bb9d6b72e101c91 (diff) | |
download | bird-a012cbb16f3d73ca7ffafe6f7933de7369e2ee48.tar bird-a012cbb16f3d73ca7ffafe6f7933de7369e2ee48.zip |
Nasty bug in LSA refreshing. I didn't refesh my own copy! :-(
-rw-r--r-- | proto/ospf/lsalib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/proto/ospf/lsalib.c b/proto/ospf/lsalib.c index 2bfd293..16e1a80 100644 --- a/proto/ospf/lsalib.c +++ b/proto/ospf/lsalib.c @@ -63,6 +63,8 @@ ospf_age(struct ospf_area *oa) en->lsa.type, en->lsa.id, en->lsa.rt); en->lsa.sn++; en->lsa.age=0; + en->inst_t=now; + en->ini_age=0; lsasum_calculate(&en->lsa,en->lsa_body,po); flood_lsa(NULL,NULL,&en->lsa,po,NULL,oa,1); continue; |