Skip to content

Commit

Permalink
Merge pull request #5577 from ton31337/fix/no_bgp_listen_range_peer-g…
Browse files Browse the repository at this point in the history
…roup_7.0

bgpd: [7.0] Make sure we can use `no bgp listen range ...`
  • Loading branch information
rwestphal committed Jan 7, 2020
2 parents 8f613bf + 4b52bd9 commit 704e820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bgpd/bgp_vty.c
Original file line number Diff line number Diff line change
Expand Up @@ -2711,7 +2711,7 @@ DEFUN (no_bgp_listen_range,
argv_find(argv, argc, "A.B.C.D/M", &idx);
argv_find(argv, argc, "X:X::X:X/M", &idx);
char *prefix = argv[idx]->arg;
argv_find(argv, argc, "WORD", &idx);
argv_find(argv, argc, "PGNAME", &idx);
char *peergroup = argv[idx]->arg;

/* Convert IP prefix string to struct prefix. */
Expand Down

0 comments on commit 704e820

Please sign in to comment.