Skip to content

Commit

Permalink
Merge pull request #15231 from donaldsharp/null_argument_warning_8.5
Browse files Browse the repository at this point in the history
bgpd: fix NULL argument warning
  • Loading branch information
ton31337 authored Jan 26, 2024
2 parents 26475ed + b68a7e8 commit 0af6244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bgpd/bgp_fsm.c
Original file line number Diff line number Diff line change
Expand Up @@ -2838,7 +2838,7 @@ const char *print_peer_gr_cmd(enum peer_gr_command pr_gr_cmd)

const char *print_global_gr_mode(enum global_mode gl_mode)
{
const char *global_gr_mode = NULL;
const char *global_gr_mode = "???";

switch (gl_mode) {
case GLOBAL_HELPER:
Expand Down

0 comments on commit 0af6244

Please sign in to comment.