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 /ripngd | |
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 'ripngd')
-rw-r--r-- | ripngd/ripng_main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ripngd/ripng_main.c b/ripngd/ripng_main.c index d21ca307a..eea47566b 100644 --- a/ripngd/ripng_main.c +++ b/ripngd/ripng_main.c @@ -175,6 +175,10 @@ struct quagga_signal_t ripng_signals[] = .signal = SIGINT, .handler = &sigint, }, + { + .signal = SIGTERM, + .handler = &sigint, + }, }; /* RIPngd main routine. */ |