mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-09 05:58:17 +00:00
ospf6d: fix typos
Signed-off-by: ckishimo <carles.kishimoto@gmail.com>
This commit is contained in:
parent
d8da8a4afc
commit
416721d942
@ -1176,7 +1176,7 @@ void ospf6_abr_examin_summary(struct ospf6_lsa *lsa, struct ospf6_area *oa)
|
|||||||
if (lsa->header->adv_router == router_lsa->router_id) {
|
if (lsa->header->adv_router == router_lsa->router_id) {
|
||||||
if (is_debug)
|
if (is_debug)
|
||||||
zlog_debug(
|
zlog_debug(
|
||||||
"Ignorning Inter-Router LSA for an ABR (%s)",
|
"Ignoring Inter-Router LSA for an ABR (%s)",
|
||||||
buf);
|
buf);
|
||||||
if (old)
|
if (old)
|
||||||
ospf6_route_remove(old, table);
|
ospf6_route_remove(old, table);
|
||||||
|
@ -614,7 +614,7 @@ struct ospf6_lsa *ospf6_translated_nssa_refresh(struct ospf6_area *area,
|
|||||||
|
|
||||||
static void ospf6_abr_translate_nssa(struct ospf6_area *area, struct ospf6_lsa *lsa)
|
static void ospf6_abr_translate_nssa(struct ospf6_area *area, struct ospf6_lsa *lsa)
|
||||||
{
|
{
|
||||||
/* Incoming Type-7 or later aggregated Type-7
|
/* Incoming Type-7 or aggregated Type-7
|
||||||
*
|
*
|
||||||
* LSA is skipped if P-bit is off.
|
* LSA is skipped if P-bit is off.
|
||||||
*
|
*
|
||||||
@ -706,7 +706,7 @@ static void ospf6_abr_translate_nssa(struct ospf6_area *area, struct ospf6_lsa *
|
|||||||
static void ospf6_abr_process_nssa_translates(struct ospf6 *ospf6)
|
static void ospf6_abr_process_nssa_translates(struct ospf6 *ospf6)
|
||||||
{
|
{
|
||||||
/* Scan through all NSSA_LSDB records for all areas;
|
/* Scan through all NSSA_LSDB records for all areas;
|
||||||
* If P-bit is on, translate all Type-7's to 5's and aggregate or\
|
* If P-bit is on, translate all Type-7's to 5's and aggregate or
|
||||||
* flood install as approved in Type-5 LSDB with XLATE Flag on
|
* flood install as approved in Type-5 LSDB with XLATE Flag on
|
||||||
* later, do same for all aggregates... At end, DISCARD all
|
* later, do same for all aggregates... At end, DISCARD all
|
||||||
* remaining UNAPPROVED Type-5's (Aggregate is for future ) */
|
* remaining UNAPPROVED Type-5's (Aggregate is for future ) */
|
||||||
@ -738,7 +738,7 @@ static void ospf6_abr_process_nssa_translates(struct ospf6 *ospf6)
|
|||||||
type = htons(OSPF6_LSTYPE_TYPE_7);
|
type = htons(OSPF6_LSTYPE_TYPE_7);
|
||||||
for (ALL_LSDB_TYPED(oa->lsdb, type, lsa)) {
|
for (ALL_LSDB_TYPED(oa->lsdb, type, lsa)) {
|
||||||
zlog_debug("%s : lsa %s , id %pI4 , adv router %pI4",
|
zlog_debug("%s : lsa %s , id %pI4 , adv router %pI4",
|
||||||
lsa->name, __func__, &lsa->header->id,
|
__func__, lsa->name, &lsa->header->id,
|
||||||
&lsa->header->adv_router);
|
&lsa->header->adv_router);
|
||||||
ospf6_abr_translate_nssa(oa, lsa);
|
ospf6_abr_translate_nssa(oa, lsa);
|
||||||
}
|
}
|
||||||
@ -1374,7 +1374,7 @@ DEFPY (no_area_nssa_range,
|
|||||||
range = ospf6_route_lookup((struct prefix *)prefix,
|
range = ospf6_route_lookup((struct prefix *)prefix,
|
||||||
oa->nssa_range_table);
|
oa->nssa_range_table);
|
||||||
if (range == NULL) {
|
if (range == NULL) {
|
||||||
vty_out(vty, "%% range %s does not exists.\n", prefix_str);
|
vty_out(vty, "%% range %s does not exist.\n", prefix_str);
|
||||||
return CMD_SUCCESS;
|
return CMD_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user