diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2009-10-07 21:10:29 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2009-10-07 21:10:29 +0100 |
commit | d82fc18d75e4ebf615657cb5d98f000c728b13e4 (patch) | |
tree | f2629862f96c5e5ad82a40a292f88b3e5c0b671e /proto/ospf/ospf.c | |
parent | 9f0ba7b1c7a0754c473b8ab202f572c9c8363285 (diff) |
Implement proper LSA ID generation.
Diffstat (limited to 'proto/ospf/ospf.c')
-rw-r--r-- | proto/ospf/ospf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c index dafb607e..0c4d673b 100644 --- a/proto/ospf/ospf.c +++ b/proto/ospf/ospf.c @@ -605,7 +605,9 @@ ospf_reconfigure(struct proto *p, struct proto_config *c) struct area_net_config *anc; struct area_net *an; - po->rfc1583 = new->rfc1583; + if (po->rfc1583 != new->rfc1583) + return 0; + schedule_rtcalc(po); po->tick = new->tick; |