From: Donald Sharp Date: Mon, 25 Sep 2017 19:43:44 +0000 (-0400) Subject: eigrpd: Follow other protocol leads and exit when told to X-Git-Tag: frr-4.0-dev~269^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=773829844f76f5605e7dc6490e37a674804e2400;p=matthieu%2Ffrr.git 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 --- 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. */