diff options
| author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2025-04-16 09:39:02 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-16 09:39:02 -0500 |
| commit | 38968cc8df4051c84cb59e50cdde7553615d0433 (patch) | |
| tree | e8a4f6ee4e4ce800baa4c6dc0978e8a355efa269 | |
| parent | 69a59464ef899223e8802b91f9fad5396d15ba8c (diff) | |
| parent | d46909e50f5b4d87614fc8c8cebb6b3a5c6d6581 (diff) | |
Merge pull request #18669 from opensourcerouting/rfapi-misused-conditional
bgpd: fix misused rfapi conditional
| -rw-r--r-- | bgpd/bgpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgpd.c b/bgpd/bgpd.c index 31cd573aee..83f8057736 100644 --- a/bgpd/bgpd.c +++ b/bgpd/bgpd.c @@ -8972,7 +8972,7 @@ void bgp_terminate(void) EVENT_OFF(bm->t_bgp_zebra_l3_vni); bgp_mac_finish(); -#if ENABLE_BGP_VNC +#ifdef ENABLE_BGP_VNC rfapi_terminate(); #endif } |
