From a63c2b97d7f48776ccd6697dcb9251c4b93c227d Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Tue, 31 Jul 2001 15:29:50 +0000 Subject: [PATCH] Don't use SA_RESETHAND here. We gain nothing. Suggested by: bde --- libexec/pppoed/pppoed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/pppoed/pppoed.c b/libexec/pppoed/pppoed.c index 177ccf8fc340..ce50ee416452 100644 --- a/libexec/pppoed/pppoed.c +++ b/libexec/pppoed/pppoed.c @@ -603,7 +603,7 @@ main(int argc, char **argv) memset(&act, '\0', sizeof act); act.sa_handler = Farewell; - act.sa_flags = SA_RESETHAND; + act.sa_flags = 0; sigemptyset(&act.sa_mask); sigaction(SIGHUP, &act, NULL); sigaction(SIGINT, &act, NULL);