summaryrefslogtreecommitdiffstats
path: root/ospf6d/ospf6_asbr.c
diff options
context:
space:
mode:
authorckishimo <carles.kishimoto@gmail.com>2022-01-10 14:29:11 +0100
committerckishimo <carles.kishimoto@gmail.com>2022-01-10 14:47:07 +0100
commitb80cebb3b44f172938104af13ed55e5a09da5417 (patch)
tree6b62d38233889586a1a93d47692fbc3bff6829f2 /ospf6d/ospf6_asbr.c
parentMerge pull request #10299 from donaldsharp/various_stuff (diff)
downloadfrr-b80cebb3b44f172938104af13ed55e5a09da5417.tar.xz
frr-b80cebb3b44f172938104af13ed55e5a09da5417.zip
ospf6d: remove duplicated log
When running topotest ospf6_topo2 we can see a log message with wrong lsa id 2021/12/20 23:14:40.330 OSPF6: [V8P0C-HB5Z2] ASBR[default:Status:3]: Update 2021/12/20 23:14:40.330 OSPF6: [Z489N-JAJ6P] ASBR[default:Status:3]: Already ASBR 2021/12/20 23:14:40.330 OSPF6: [Z9D0B-12SBJ] Redistribute 2001:db8:2::/64 (connected) 2021/12/20 23:14:40.330 OSPF6: [N66XP-ANN4G] Advertise as AS-External Id:8.70.41.177 prefix 2001:db8:2::/64 metric 2 (**) 2021/12/20 23:14:40.330 OSPF6: [K4Y9R-C22T6] Advertise new AS-External Id:0.0.0.3 prefix 2001:db8:2::/64 metric 2 2021/12/20 23:14:40.330 OSPF6: [PKX0N-KNRQR] Originate AS-External-LSA for 2001:db8:2::/64 This PR removes the log (instead of fixing it) as same information is printed in the following entry Signed-off-by: ckishimo <carles.kishimoto@gmail.com>
Diffstat (limited to 'ospf6d/ospf6_asbr.c')
-rw-r--r--ospf6d/ospf6_asbr.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/ospf6d/ospf6_asbr.c b/ospf6d/ospf6_asbr.c
index 99f30a4a0..869d3a6b1 100644
--- a/ospf6d/ospf6_asbr.c
+++ b/ospf6d/ospf6_asbr.c
@@ -1409,8 +1409,6 @@ void ospf6_asbr_redistribute_add(int type, ifindex_t ifindex,
struct ospf6_external_info tinfo;
struct ospf6_route *route, *match;
struct ospf6_external_info *info;
- struct prefix prefix_id;
- char ibuf[16];
struct ospf6_redist *red;
red = ospf6_redist_lookup(ospf6, type, 0);
@@ -1496,14 +1494,6 @@ void ospf6_asbr_redistribute_add(int type, ifindex_t ifindex,
else
ospf6_route_add_nexthop(match, ifindex, NULL);
- if (IS_OSPF6_DEBUG_ASBR) {
- inet_ntop(AF_INET, &prefix_id.u.prefix4, ibuf,
- sizeof(ibuf));
- zlog_debug(
- "Advertise as AS-External Id:%s prefix %pFX metric %u",
- ibuf, prefix, match->path.metric_type);
- }
-
match->path.origin.id = htonl(info->id);
ospf6_handle_external_lsa_origination(ospf6, match, prefix);