diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-10-11 12:57:57 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2022-10-12 07:39:23 -0400 |
| commit | 08040409cce0f64b9c78e34584b9b915b2620fb5 (patch) | |
| tree | 7cf129d0a9e6277cac45a0e520e918ef6c61f97c /staticd | |
| parent | 69c736ec06c30cfb474800cb2116998c362547a7 (diff) | |
staticd: Clean up zclient on shutdown
The zclient data structure was not being cleaned up on shutdown.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'staticd')
| -rw-r--r-- | staticd/static_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/staticd/static_main.c b/staticd/static_main.c index 7badd50049..79686158cf 100644 --- a/staticd/static_main.c +++ b/staticd/static_main.c @@ -79,6 +79,7 @@ static void sigint(void) static_vrf_terminate(); + static_zebra_stop(); frr_fini(); exit(0); |
