the group_list, not the user_list. From Daniel Kopecek.
--HG--
branch : 1.7
+What's new in Sudo 1.7.8p1?
+
+ * Fixed matching of a Runas_Alias in the group section of a
+ Runas_Spec.
+
What's new in Sudo 1.7.8?
* Sudo will now use PAM by default on AIX 6 and higher.
break;
case ALIAS:
if ((a = alias_find(m->name, RUNASALIAS)) != NULL) {
- rval = _runaslist_matches(&a->members, &empty);
+ rval = _runaslist_matches(&empty, &a->members);
if (rval != UNSPEC)
group_matched = m->negated ? !rval : rval;
break;