aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>2001-07-31 09:53:20 +0000
committerBrian Somers <brian@FreeBSD.org>2001-07-31 09:53:20 +0000
commit7042cfcdd6263dc27913a4ddb9999b9a8d93a3a7 (patch)
tree4b45925f7e75148aae7dc2e61938fd564d3e5a01 /libexec
parent74bd6d9d66b7f58d4f422c2187edfaf958f0f2b3 (diff)
Notes
Diffstat (limited to 'libexec')
-rw-r--r--libexec/pppoed/pppoed.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/libexec/pppoed/pppoed.c b/libexec/pppoed/pppoed.c
index 870df09f659f..f6b4907f25eb 100644
--- a/libexec/pppoed/pppoed.c
+++ b/libexec/pppoed/pppoed.c
@@ -77,7 +77,6 @@ static void
Farewell(int sig)
{
ReceivedSignal = sig;
- signal(sig, SIG_DFL); /* If something makes us block... */
}
static int
@@ -469,6 +468,7 @@ main(int argc, char **argv)
unsigned char response[1024];
const char *prog, *provider, *acname;
struct ngm_connect ngc;
+ struct sigaction act;
int ch, cs, ds, ret, optF, optd, optn, sz, f;
const char *pidfile;
@@ -591,10 +591,14 @@ main(int argc, char **argv)
if (!optF && optn)
NgSetErrLog(nglog, nglogx);
- signal(SIGHUP, Farewell);
- signal(SIGINT, Farewell);
- signal(SIGQUIT, Farewell);
- signal(SIGTERM, Farewell);
+ memset(&act, '\0', sizeof act);
+ act.sa_handler = Farewell;
+ act.sa_flags = SA_RESETHAND;
+ sigemptyset(&act.sa_mask);
+ sigaction(SIGHUP, &act, NULL);
+ sigaction(SIGINT, &act, NULL);
+ sigaction(SIGQUIT, &act, NULL);
+ sigaction(SIGTERM, &act, NULL);
while (!ReceivedSignal) {
if (*provider)