
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@505 ec53bebd-3082-4978-b11e-865c3cabbd6b
18 lines
204 B
C
18 lines
204 B
C
#include <config.h>
|
|
|
|
RCSID("$Id$");
|
|
|
|
int
|
|
setegid(int egid)
|
|
{
|
|
#ifdef HAVE_SETREGID
|
|
return setregid(-1, egid);
|
|
#endif
|
|
|
|
#ifdef HAVE_SETRESGID
|
|
return setresgid(-1, egid, -1);
|
|
#endif
|
|
|
|
return -1;
|
|
}
|