summaryrefslogtreecommitdiffstats
path: root/ripd/rip_main.c
diff options
context:
space:
mode:
authorhasso <hasso>2004-03-22 08:55:25 +0000
committerhasso <hasso>2004-03-22 08:55:25 +0000
commit938196eedc0883040efe960bc7f2d999860bc75d (patch)
treec7535aa7152bb6b962af8972cf4b913711e5c54d /ripd/rip_main.c
parent55a0bb0cfb6062fbc11545fade52787923c4c36f (diff)
downloadquagga-938196eedc0883040efe960bc7f2d999860bc75d.tar.bz2
quagga-938196eedc0883040efe960bc7f2d999860bc75d.tar.xz
Readded SIGTERM handling into sigevent stuff. Fixes bugzilla #85.
Diffstat (limited to 'ripd/rip_main.c')
-rw-r--r--ripd/rip_main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ripd/rip_main.c b/ripd/rip_main.c
index abe61067..530b13c9 100644
--- a/ripd/rip_main.c
+++ b/ripd/rip_main.c
@@ -172,6 +172,10 @@ struct quagga_signal_t ripd_signals[] =
.signal = SIGINT,
.handler = &sigint,
},
+ {
+ .signal = SIGTERM,
+ .handler = &sigint,
+ },
};
/* Main routine of ripd. */