diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-08-26 22:20:16 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-09-09 16:28:05 -0400 |
| commit | 513c8c4f74b24c67ed7e56582c5b1e0093e5118e (patch) | |
| tree | 370eda877d9c9f4d52962901a75e2dc19c7e7da2 /bgpd/bgp_fsm.c | |
| parent | 981dd86920ec049174ea81f961896b94e4ae017f (diff) | |
bgpd: move t_pmax_restart to peer_connection
The t_pmax_restart event pointer belongs in the peer_connection
pointer.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'bgpd/bgp_fsm.c')
| -rw-r--r-- | bgpd/bgp_fsm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_fsm.c b/bgpd/bgp_fsm.c index b7a7cf75e9..96a46f5f54 100644 --- a/bgpd/bgp_fsm.c +++ b/bgpd/bgp_fsm.c @@ -478,7 +478,7 @@ void bgp_timer_set(struct peer *peer) FOREACH_AFI_SAFI (afi, safi) EVENT_OFF(peer->t_llgr_stale[afi][safi]); - EVENT_OFF(peer->t_pmax_restart); + EVENT_OFF(peer->connection->t_pmax_restart); EVENT_OFF(peer->t_refresh_stalepath); /* fallthru */ case Clearing: |
