diff options
author | sumikawa <sumikawa@FreeBSD.org> | 2002-11-03 16:20:24 +0000 |
---|---|---|
committer | sumikawa <sumikawa@FreeBSD.org> | 2002-11-03 16:20:24 +0000 |
commit | 1e8047af4d869b2aef251b39efa8b268eb40f192 (patch) | |
tree | 9aed9af7180becf18a4c16dfef0a47e260aee4b4 /dns/totd | |
parent | d5910d94acf2fe4399b32656a526e3d5b238ec7c (diff) | |
download | FreeBSD-ports-1e8047af4d869b2aef251b39efa8b268eb40f192.zip FreeBSD-ports-1e8047af4d869b2aef251b39efa8b268eb40f192.tar.gz |
Fix signal handling.
Diffstat (limited to 'dns/totd')
-rw-r--r-- | dns/totd/Makefile | 2 | ||||
-rw-r--r-- | dns/totd/files/patch-ev_signal.c | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/dns/totd/Makefile b/dns/totd/Makefile index b48626f..399c31d 100644 --- a/dns/totd/Makefile +++ b/dns/totd/Makefile @@ -6,7 +6,7 @@ PORTNAME= totd PORTVERSION= 1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net ipv6 MASTER_SITES= ftp://ftp.pasta.cs.uit.no/pub/Vermicelli/ diff --git a/dns/totd/files/patch-ev_signal.c b/dns/totd/files/patch-ev_signal.c new file mode 100644 index 0000000..d271603 --- /dev/null +++ b/dns/totd/files/patch-ev_signal.c @@ -0,0 +1,13 @@ +Index: ev_signal.c +diff -u ev_signal.c.orig ev_signal.c +--- ev_signal.c.orig Thu Sep 7 05:28:36 2000 ++++ ev_signal.c Sun Nov 18 08:58:10 2001 +@@ -94,7 +94,7 @@ + SIGINT, ev_signal_initiator_generic, ev_handler_cleanup + }, + { +- SIGHUP, ev_signal_initiator_generic, ev_handler_cleanup ++ SIGHUP, SIG_IGN, NULL + }, + { + SIGTERM, ev_signal_initiator_generic, ev_handler_cleanup |