From da8048b4fa8b60ec3cb3033d19d4a451f259befb Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Tue, 21 Oct 2003 14:19:32 +0000 Subject: call initgroups before becomming the user; patch from Fabio Cecchi (This used to be commit 5a8dbccd66911642fabb6b8b38fff4477b76c3a1) --- source3/web/cgi.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source3/web/cgi.c b/source3/web/cgi.c index 212c2884b6..8e739cd224 100644 --- a/source3/web/cgi.c +++ b/source3/web/cgi.c @@ -342,6 +342,9 @@ static BOOL cgi_handle_authorization(char *line) * Password was ok. */ + if ( initgroups(pass->pw_name, pass->pw_gid) != 0 ) + goto err; + become_user_permanently(pass->pw_uid, pass->pw_gid); /* Save the users name */ -- cgit