0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-08 12:18:42 +00:00

Sysdep: Drop supplementary groups when dropping GID

We forgot to do that. Oops.
This commit is contained in:
Ondrej Zajicek (work) 2019-08-21 17:30:00 +02:00
parent 4fa0e472cf
commit 5ab3447de1

View File

@ -83,6 +83,9 @@ drop_gid(gid_t gid)
{ {
if (setgid(gid) < 0) if (setgid(gid) < 0)
die("setgid: %m"); die("setgid: %m");
if (setgroups(0, NULL) < 0)
die("setgroups: %m");
} }
/* /*