summaryrefslogtreecommitdiff
path: root/ripd
diff options
context:
space:
mode:
authorhasso <hasso>2004-03-22 08:55:25 +0000
committerhasso <hasso>2004-03-22 08:55:25 +0000
commitf571dab0c677ca4f3328ea944cc59ab2269c9a5d (patch)
treedcdb8086dd98dd956b0ba9ba9479d4fc2bd3388a /ripd
parent37318657e5af8774a7a1446157f99496e887719f (diff)
Readded SIGTERM handling into sigevent stuff. Fixes bugzilla #85.
Diffstat (limited to 'ripd')
-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. */