From 04e2401d2019852ccc08f91cfb6c4a5eaf5a0575 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Mon, 5 Feb 2024 10:40:24 +0200 Subject: [PATCH] bgpd: Do not reset the session if turning on/off FQDN capability Allow BGP dynamic capabilities handle this gracefully. Signed-off-by: Donatas Abraitis --- bgpd/bgpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/bgpd.c b/bgpd/bgpd.c index 58514566ef..b8517199af 100644 --- a/bgpd/bgpd.c +++ b/bgpd/bgpd.c @@ -4574,7 +4574,7 @@ static const struct peer_flag_action peer_flag_action_list[] = { {PEER_FLAG_AIGP, 0, peer_change_none}, {PEER_FLAG_GRACEFUL_SHUTDOWN, 0, peer_change_none}, {PEER_FLAG_CAPABILITY_SOFT_VERSION, 0, peer_change_none}, - {PEER_FLAG_CAPABILITY_FQDN, 0, peer_change_reset}, + {PEER_FLAG_CAPABILITY_FQDN, 0, peer_change_none}, {0, 0, 0}}; static const struct peer_flag_action peer_af_flag_action_list[] = { -- 2.39.5