mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-05 14:31:51 +00:00
Merge pull request #10328 from ton31337/fix/vty_json
This commit is contained in:
commit
379effbf70
@ -672,10 +672,7 @@ static int bgp_print_dampening_parameters(struct bgp *bgp, struct vty *vty,
|
||||
json_object_int_add(json, "maxSuppressPenalty",
|
||||
bdc->ceiling);
|
||||
|
||||
vty_out(vty, "%s\n",
|
||||
json_object_to_json_string_ext(
|
||||
json, JSON_C_TO_STRING_PRETTY));
|
||||
json_object_free(json);
|
||||
vty_json(vty, json);
|
||||
} else {
|
||||
vty_out(vty, "Half-life time: %lld min\n",
|
||||
(long long)bdc->half_life / 60);
|
||||
|
@ -10350,12 +10350,8 @@ DEFPY (show_ip_ospf_gr_helper,
|
||||
vty, ospf, use_vrf, json, uj, detail);
|
||||
}
|
||||
|
||||
if (uj) {
|
||||
vty_out(vty, "%s\n",
|
||||
json_object_to_json_string_ext(
|
||||
json, JSON_C_TO_STRING_PRETTY));
|
||||
json_object_free(json);
|
||||
}
|
||||
if (uj)
|
||||
vty_json(vty, json);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -10364,12 +10360,9 @@ DEFPY (show_ip_ospf_gr_helper,
|
||||
|
||||
if (ospf == NULL || !ospf->oi_running) {
|
||||
|
||||
if (uj) {
|
||||
vty_out(vty, "%s\n",
|
||||
json_object_to_json_string_ext(
|
||||
json, JSON_C_TO_STRING_PRETTY));
|
||||
json_object_free(json);
|
||||
} else
|
||||
if (uj)
|
||||
vty_json(vty, json);
|
||||
else
|
||||
vty_out(vty, "%% OSPF instance not found\n");
|
||||
|
||||
return CMD_SUCCESS;
|
||||
@ -10381,12 +10374,9 @@ DEFPY (show_ip_ospf_gr_helper,
|
||||
|
||||
if (ospf == NULL || !ospf->oi_running) {
|
||||
|
||||
if (uj) {
|
||||
vty_out(vty, "%s\n",
|
||||
json_object_to_json_string_ext(
|
||||
json, JSON_C_TO_STRING_PRETTY));
|
||||
json_object_free(json);
|
||||
} else
|
||||
if (uj)
|
||||
vty_json(vty, json);
|
||||
else
|
||||
vty_out(vty, "%% OSPF instance not found\n");
|
||||
|
||||
return CMD_SUCCESS;
|
||||
@ -10396,11 +10386,8 @@ DEFPY (show_ip_ospf_gr_helper,
|
||||
detail);
|
||||
}
|
||||
|
||||
if (uj) {
|
||||
vty_out(vty, "%s\n", json_object_to_json_string_ext(
|
||||
json, JSON_C_TO_STRING_PRETTY));
|
||||
json_object_free(json);
|
||||
}
|
||||
if (uj)
|
||||
vty_json(vty, json);
|
||||
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user