diff options
author | hasso <hasso> | 2004-03-22 09:55:25 +0100 |
---|---|---|
committer | hasso <hasso> | 2004-03-22 09:55:25 +0100 |
commit | f571dab0c677ca4f3328ea944cc59ab2269c9a5d (patch) | |
tree | dcdb8086dd98dd956b0ba9ba9479d4fc2bd3388a /ospfd/ospf_main.c | |
parent | Fixing ospf6d as well and move Changelog entry from ospfd to general one. (diff) | |
download | frr-f571dab0c677ca4f3328ea944cc59ab2269c9a5d.tar.xz frr-f571dab0c677ca4f3328ea944cc59ab2269c9a5d.zip |
Readded SIGTERM handling into sigevent stuff. Fixes bugzilla #85.
Diffstat (limited to 'ospfd/ospf_main.c')
-rw-r--r-- | ospfd/ospf_main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ospfd/ospf_main.c b/ospfd/ospf_main.c index 43aa5a4fd..d80aa26c3 100644 --- a/ospfd/ospf_main.c +++ b/ospfd/ospf_main.c @@ -163,6 +163,10 @@ struct quagga_signal_t ospf_signals[] = .signal = SIGINT, .handler = &sigint, }, + { + .signal = SIGTERM, + .handler = &sigint, + }, }; /* OSPFd main routine. */ |