1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-03 01:17:45 +03:00

udev: match device tags in rules using current device tags

This ensures that udev scripts using `TAG-="..."` and expecting later
udev rules to honor it will work properly. An use case is removing the
`uaccess` tag from a device without overriding the original file and
ensuring that `73-seat-uaccess.rules` won't run the uaccess builtin later.
This commit is contained in:
msizanoen1 2022-12-27 11:57:12 +07:00 committed by Lennart Poettering
parent c3950f0a27
commit 3102499039

View File

@ -1641,7 +1641,7 @@ static int udev_rule_apply_token_to_event(
case TK_M_PARENTS_TAG: { case TK_M_PARENTS_TAG: {
const char *val; const char *val;
FOREACH_DEVICE_TAG(dev, val) FOREACH_DEVICE_CURRENT_TAG(dev, val)
if (token_match_string(token, val)) if (token_match_string(token, val))
return token->op == OP_MATCH; return token->op == OP_MATCH;
return token->op == OP_NOMATCH; return token->op == OP_NOMATCH;