From 773829844f76f5605e7dc6490e37a674804e2400 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Mon, 25 Sep 2017 15:43:44 -0400 Subject: [PATCH] eigrpd: Follow other protocol leads and exit when told to EIGRP was continuing to run after being told to exit. Fixes:#1224 Signed-off-by: Donald Sharp --- eigrpd/eigrp_main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eigrpd/eigrp_main.c b/eigrpd/eigrp_main.c index 705e04b34d..c4ca07178c 100644 --- a/eigrpd/eigrp_main.c +++ b/eigrpd/eigrp_main.c @@ -100,6 +100,8 @@ static void sigint(void) { zlog_notice("Terminating on signal"); eigrp_terminate(); + + exit(0); } /* SIGUSR1 handler. */ -- 2.39.5