diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-11-15 14:36:24 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-11-21 12:41:18 -0500 | 
| commit | 88a54b123d68e032f115bc086e0f33087a746254 (patch) | |
| tree | a000d90938142b34de7965db52123a8c1601b374 /eigrpd/eigrp_main.c | |
| parent | a3dfb086621e6c8561b9a940e49a78ab6f61ee02 (diff) | |
*: Cleanup keychain on shutdown
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'eigrpd/eigrp_main.c')
| -rw-r--r-- | eigrpd/eigrp_main.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/eigrpd/eigrp_main.c b/eigrpd/eigrp_main.c index 6d7443b791..634bf1772e 100644 --- a/eigrpd/eigrp_main.c +++ b/eigrpd/eigrp_main.c @@ -96,6 +96,8 @@ static void sigint(void)  	zlog_notice("Terminating on signal");  	eigrp_terminate(); +	keychain_terminate(); +  	exit(0);  }  | 
