View | Details | Raw Unified
Collapse All | Expand All

(-) shadow-4.0.7.orig/src/su.c (-1 / +1 lines)
 Lines 111-117    Link Here 
{
{
	struct group *grp;
	struct group *grp;
	grp = getgrgid (0);
	grp = getgrnam ("wheel");
	if (!grp || !grp->gr_mem)
	if (!grp || !grp->gr_mem)
		return 0;
		return 0;
	return is_on_list (grp->gr_mem, username);
	return is_on_list (grp->gr_mem, username);