summaryrefslogtreecommitdiffstats
path: root/ospf6d/ospf6_lsa.c
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2023-01-31 09:18:28 +0100
committerDonatas Abraitis <donatas@opensourcerouting.org>2023-01-31 09:18:28 +0100
commit1ce23106ebf0bf088dde69958228076faf5ac1b8 (patch)
tree5df60fefa3a267e080a5882db0c5a8ef7c14ace5 /ospf6d/ospf6_lsa.c
parentMerge pull request #12709 from donaldsharp/update_withdraw_always_work (diff)
downloadfrr-1ce23106ebf0bf088dde69958228076faf5ac1b8.tar.xz
frr-1ce23106ebf0bf088dde69958228076faf5ac1b8.zip
*: Drop deprecated incorrect JSON fields with wrong naming
Deprecation cycle already passed. Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'ospf6d/ospf6_lsa.c')
-rw-r--r--ospf6d/ospf6_lsa.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ospf6d/ospf6_lsa.c b/ospf6d/ospf6_lsa.c
index 55ac7c88a..cd918d747 100644
--- a/ospf6d/ospf6_lsa.c
+++ b/ospf6d/ospf6_lsa.c
@@ -83,11 +83,7 @@ static int ospf6_unknown_lsa_show(struct vty *vty, struct ospf6_lsa *lsa,
start = (uint8_t *)lsa->header + sizeof(struct ospf6_lsa_header);
end = (uint8_t *)lsa->header + ntohs(lsa->header->length);
-#if CONFDATE > 20230131
-CPP_NOTICE("Remove JSON object commands with keys starting with capital")
-#endif
if (use_json) {
- json_object_string_add(json_obj, "LsaType", "unknown");
json_object_string_add(json_obj, "lsaType", "unknown");
} else {
vty_out(vty, " Unknown contents:\n");