From 0afd6ea47554dee40d1eaf33fa73d693fb661e64 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Mon, 27 Sep 2021 00:03:19 +1000 Subject: initgroups needs grp.h Bug-Debian: https://bugs.debian.org/995130 Origin: backport, https://anongit.mindrot.org/openssh.git/commit/?id=bf944e3794eff5413f2df1ef37cddf96918c6bde Last-Update: 2023-12-19 Patch-Name: CVE-2021-41617-2.patch --- auth.c | 1 + 1 file changed, 1 insertion(+) diff --git a/auth.c b/auth.c index 32870851b..88578ec45 100644 --- a/auth.c +++ b/auth.c @@ -39,6 +39,7 @@ # include #endif #include +#include #ifdef HAVE_LOGIN_H #include #endif