diff options
author | Ondrej Filip <feela@network.cz> | 2004-07-13 13:58:50 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-07-13 13:58:50 +0200 |
commit | 621ccdfe5acd2889956ec0f8e96b812acd09f168 (patch) | |
tree | 61b4973caa5de3ca4197ca3b92c08759560ec787 /proto/ospf/rt.c | |
parent | 9baece57d308d9e0d8eaab9d068471e1884817b8 (diff) | |
download | bird-621ccdfe5acd2889956ec0f8e96b812acd09f168.tar bird-621ccdfe5acd2889956ec0f8e96b812acd09f168.zip |
Bugfix - options bits were not included in LSAs
Bugfix - E bit was not unset on stub areas.
Diffstat (limited to 'proto/ospf/rt.c')
-rw-r--r-- | proto/ospf/rt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/proto/ospf/rt.c b/proto/ospf/rt.c index cee1589..3d2ee51 100644 --- a/proto/ospf/rt.c +++ b/proto/ospf/rt.c @@ -243,7 +243,7 @@ ospf_rt_spfa(struct ospf_area *oa) DBG("PTP found.\n"); break; default: - log("Unknown link type in router lsa."); + log("Unknown link type in router lsa. (rid = %I)", act->lsa.id); break; } if (tmp) @@ -339,7 +339,7 @@ link_back(struct ospf_area *oa, struct top_hash_entry *fol, struct top_hash_entr } break; default: - log("Unknown link type in router lsa."); + log("Unknown link type in router lsa. (rid = %I)", fol->lsa.id); break; } } @@ -357,7 +357,7 @@ link_back(struct ospf_area *oa, struct top_hash_entry *fol, struct top_hash_entr } break; default: - log("Unknown link type in router lsa."); + bug("Unknown lsa type. (id = %I)", fol->lsa.id); } return 0; } |