From 11c82e2f1bd0cc6cd89612ec5c799f68142b5750 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 21 Apr 2017 09:25:17 -0600 Subject: [PATCH] Fix typo in killpg macro. --- include/sudo_compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sudo_compat.h b/include/sudo_compat.h index 520680e7d..1c1238383 100644 --- a/include/sudo_compat.h +++ b/include/sudo_compat.h @@ -278,7 +278,7 @@ typedef struct sigaction sigaction_t; #endif #if !defined(HAVE_KILLPG) && !defined(killpg) -# define killpg(p, s) kill((p), -(s)) +# define killpg(p, s) kill(-(p), (s)) #endif /* -- 2.40.0