Actually fixed ambiguous else. The previous revision had no effect.

This commit is contained in:
Bruce Evans 1999-07-02 11:20:59 +00:00
parent 90331af0d2
commit 95103bc098
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48458

View File

@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)su.c 8.3 (Berkeley) 4/2/94";
#endif
static const char rcsid[] =
"$Id: su.c,v 1.29 1998/10/09 20:14:48 markm Exp $";
"$Id: su.c,v 1.30 1999/07/01 17:59:17 billf Exp $";
#endif /* not lint */
#include <sys/param.h>
@ -269,12 +269,12 @@ main(argc, argv)
if (pwd->pw_uid == 0 && (gr = getgrgid((gid_t)0)) &&
gr->gr_mem && *(gr->gr_mem))
for (g = gr->gr_mem;; ++g) {
if (!*g)
if (!*g) {
if (gid == 0)
break;
else {
else
errx(1, "you are not in the correct group to su %s.", user);
}
}
if (strcmp(username, *g) == 0) {
#ifdef WHEELSU
iswheelsu = 1;