diff options
author | hasso <hasso> | 2004-03-22 08:55:25 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-03-22 08:55:25 +0000 |
commit | f571dab0c677ca4f3328ea944cc59ab2269c9a5d (patch) | |
tree | dcdb8086dd98dd956b0ba9ba9479d4fc2bd3388a /zebra | |
parent | 37318657e5af8774a7a1446157f99496e887719f (diff) |
Readded SIGTERM handling into sigevent stuff. Fixes bugzilla #85.
Diffstat (limited to 'zebra')
-rw-r--r-- | zebra/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zebra/main.c b/zebra/main.c index 9966c172..efc95643 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -176,6 +176,10 @@ struct quagga_signal_t zebra_signals[] = .signal = SIGINT, .handler = &sigint, }, + { + .signal = SIGTERM, + .handler = &sigint, + }, }; /* Main startup routine. */ |