1
0
mirror of https://github.com/systemd/systemd.git synced 2025-02-03 17:47:28 +03:00

rule_generator: fix enumeration for write_cd_rules

quote +, as it would be taken as a part of the regexp otherwise
https://bugzilla.redhat.com/show_bug.cgi?id=477535
This commit is contained in:
Harald Hoyer 2008-12-22 12:26:06 +01:00 committed by Kay Sievers
parent a8cf7cf2c7
commit de2dc210e5

View File

@ -23,7 +23,7 @@ RULES_FILE="/etc/udev/rules.d/70-persistent-cd.rules"
. /lib/udev/rule_generator.functions
find_next_available() {
raw_find_next_available "$(find_all_rules 'SYMLINK+=' "$1")"
raw_find_next_available "$(find_all_rules 'SYMLINK\+=' "$1")"
}
write_rule() {