From 5b5bb8c82d70cf65707d5561e0640bf2ae8c2e6e Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Sat, 17 Oct 2015 19:41:47 -0400 Subject: [PATCH] Port: Don't use SIGUNUSED which is not defined on Solaris MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- src/common/runas.c | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/src/common/runas.c b/src/common/runas.c index 7e5743be1..1105f207f 100644 --- a/src/common/runas.c +++ b/src/common/runas.c @@ -532,22 +532,13 @@ int run_as_rmdir_recursive(const char *path, uid_t uid, gid_t gid) static int reset_sighandler(void) { - int sig, ret = 0; + int sig; DBG("Resetting run_as worker signal handlers to default"); - for (sig = SIGHUP; sig <= SIGUNUSED; sig++) { - /* Skip unblockable signals. */ - if (sig == SIGKILL || sig == SIGSTOP) { - continue; - } - if (signal(sig, SIG_DFL) == SIG_ERR) { - PERROR("reset signal %d", sig); - ret = -1; - goto end; - } + for (sig = 1; sig <= 31; sig++) { + (void) signal(sig, SIG_DFL); } -end: - return ret; + return 0; } static -- 2.34.1