From e409afcfa722a5c00a530cccb57b56ae92c5aa0e Mon Sep 17 00:00:00 2001 From: henning <> Date: Thu, 4 Nov 2004 23:04:22 +0000 Subject: [PATCH] use SIG_DFL instead of SIG_IGN when we are not interested in SIG_CHILD anymore, same thing for us and it makes darren's life easier for the portable --- src/usr.sbin/ntpd/ntpd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/usr.sbin/ntpd/ntpd.c b/src/usr.sbin/ntpd/ntpd.c index bedfa073..99f035cf 100644 --- a/src/usr.sbin/ntpd/ntpd.c +++ b/src/usr.sbin/ntpd/ntpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntpd.c,v 1.22 2004/09/23 01:53:07 henning Exp $ */ +/* $OpenBSD: ntpd.c,v 1.23 2004/11/04 23:04:22 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer @@ -195,7 +195,7 @@ main(int argc, char *argv[]) } - signal(SIGCHLD, SIG_IGN); + signal(SIGCHLD, SIG_DFL); if (chld_pid) kill(chld_pid, SIGTERM);