diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-12-25 18:10:18 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-12-26 13:24:36 -0500 |
commit | e3e0314b56012f7febc279d268f2cadc1fcc0f25 (patch) | |
tree | 77167853e86557b2ec2e377ebdcebc91e1d13df4 /src/udev | |
parent | 8d5ba5a946388c965632713f6c1abfb3acba17f7 (diff) |
systemctl: allow globbing in commands which take multiple unit names
Diffstat (limited to 'src/udev')
-rw-r--r-- | src/udev/udev-rules.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udev-rules.c b/src/udev/udev-rules.c index bbf547222c..52634f137d 100644 --- a/src/udev/udev-rules.c +++ b/src/udev/udev-rules.c @@ -961,7 +961,7 @@ static int rule_add_key(struct rule_tmp *rule_tmp, enum token_type type, int has_glob; has_split = (strchr(value, '|') != NULL); - has_glob = (strchr(value, '*') != NULL || strchr(value, '?') != NULL || strchr(value, '[') != NULL); + has_glob = string_is_glob(value); if (has_split && has_glob) { glob = GL_SPLIT_GLOB; } else if (has_split) { |