Skip to content
Snippets Groups Projects
Commit b9c897e0 authored by Moe Jette's avatar Moe Jette
Browse files

Permit config file to have partition's AllowGroups=ALL to be accepted.

parent ca91d631
No related branches found
No related tags found
No related merge requests found
......@@ -652,8 +652,10 @@ static int _parse_part_spec(char *in_line)
default_part.shared = shared_val;
if (allow_groups) {
xfree(default_part.allow_groups);
default_part.allow_groups = allow_groups;
allow_groups = NULL;
if (strcasecmp(allow_groups, "ALL")) {
default_part.allow_groups = allow_groups;
allow_groups = NULL;
}
}
if (nodes) {
xfree(default_part.nodes);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment