From: Todd C. Miller Date: Fri, 21 Apr 2017 15:25:17 +0000 (-0600) Subject: Fix typo in killpg macro. X-Git-Tag: SUDO_1_8_20^2~36 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=11c82e2f1bd0cc6cd89612ec5c799f68142b5750;p=sudo Fix typo in killpg macro. --- 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 /*