call initgroups before becomming the user; patch from Fabio Cecchi
authorGerald Carter <jerry@samba.org>
Tue, 21 Oct 2003 14:19:32 +0000 (14:19 +0000)
committerGerald Carter <jerry@samba.org>
Tue, 21 Oct 2003 14:19:32 +0000 (14:19 +0000)
(This used to be commit 5a8dbccd66911642fabb6b8b38fff4477b76c3a1)

source3/web/cgi.c

index 212c2884b603f4ac7eb06b8c8fbd5379b2b1d6aa..8e739cd224e7fb513b09cb07ae3f2a1c0db3606d 100644 (file)
@@ -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 */