Skip to content

Commit

Permalink
Merge pull request #17506 from pguibert6WIND/int_versus_string
Browse files Browse the repository at this point in the history
bgpd: fix version attribute is an int, not a string
  • Loading branch information
ton31337 authored Nov 26, 2024
2 parents c15188f + c5d7815 commit bd37658
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bgpd/bgp_route.c
Original file line number Diff line number Diff line change
Expand Up @@ -12318,8 +12318,7 @@ void route_vty_out_detail_header(struct vty *vty, struct bgp *bgp,
} else {
if (incremental_print) {
vty_out(vty, "\"prefix\": \"%pFX\",\n", p);
vty_out(vty, "\"version\": \"%" PRIu64 "\",",
dest->version);
vty_out(vty, "\"version\": %" PRIu64 ",", dest->version);
} else {
json_object_string_addf(json, "prefix", "%pFX",
p);
Expand Down

0 comments on commit bd37658

Please sign in to comment.