1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-19 22:50:17 +03:00

fix typo in group assignment

Thanks to: Georgi Georgiev
This commit is contained in:
Kay Sievers 2005-07-07 22:40:09 +02:00
parent 613ffbeb15
commit a72e3f666b
2 changed files with 26 additions and 2 deletions

View File

@ -1090,7 +1090,8 @@ EOF
desc => "ignore rule test",
subsys => "block",
devpath => "/block/sda",
exp_name => "node",
exp_name => "nothing",
not_exp_name => "node",
exp_add_error => "yes",
rules => <<EOF
BUS=="scsi", KERNEL=="sda", NAME="node", OPTIONS="ignore"
@ -1415,6 +1416,29 @@ KERNEL=="ttyUSB[0-9]*", SYMLINK+="one"
KERNEL=="ttyUSB[0-9]*", SYMLINK+="two"
KERNEL=="ttyUSB[0-9]*", SYMLINK="three"
KERNEL=="ttyUSB[0-9]*", NAME="node"
EOF
},
{
desc => "test empty NAME",
subsys => "tty",
devpath => "/class/tty/ttyUSB0",
exp_name => "node",
not_exp_name => "wrong",
exp_add_error => "yes",
rules => <<EOF
KERNEL=="ttyUSB[0-9]*", NAME=""
KERNEL=="ttyUSB[0-9]*", NAME="wrong"
EOF
},
{
desc => "test empty NAME 2",
subsys => "tty",
devpath => "/class/tty/ttyUSB0",
exp_name => "right",
rules => <<EOF
KERNEL=="ttyUSB[0-9]*", NAME="right"
KERNEL=="ttyUSB[0-9]*", NAME=""
KERNEL=="ttyUSB[0-9]*", NAME="wrong"
EOF
},
);

View File

@ -409,7 +409,7 @@ static int add_to_rules(struct udev_rules *rules, char *line)
gid_t gid = lookup_group(value);
dbg("replacing groupname='%s' by id=%i", value, gid);
sprintf(group, "%li", gid);
add_rule_key(rule, &rule->owner, operation, group);
add_rule_key(rule, &rule->group, operation, group);
continue;
}
}