Merge pull request #10968 from opensourcerouting/fix/gr_ordering

bgpd: Use proper debug msg for graceful restart commands
This commit is contained in:
Russ White 2022-04-05 10:20:15 -04:00 committed by GitHub
commit 3e66928ba7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2755,10 +2755,10 @@ const char *print_peer_gr_cmd(enum peer_gr_command pr_gr_cmd)
peer_gr_cmd = "NO_PEER_GR_CMD";
break;
case PEER_DISABLE_CMD:
peer_gr_cmd = "PEER_GR_CMD";
peer_gr_cmd = "PEER_DISABLE_GR_CMD";
break;
case NO_PEER_DISABLE_CMD:
peer_gr_cmd = "NO_PEER_GR_CMD";
peer_gr_cmd = "NO_PEER_DISABLE_GR_CMD";
break;
case PEER_HELPER_CMD:
peer_gr_cmd = "PEER_HELPER_CMD";