chiark / gitweb /
rules_generator: fix write_cd_rules when similar names exist in the root directory
authorMarco d'Itri <md@Linux.IT>
Tue, 7 Aug 2007 08:39:07 +0000 (10:39 +0200)
committerKay Sievers <kay.sievers@vrfy.org>
Tue, 7 Aug 2007 08:39:07 +0000 (10:39 +0200)
The argument to find_all_rules must be quoted or it will be subject to
shell expansion, which will happen if in the root directory there are
mount points with the same base name.
See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=407738 for details.

extras/rule_generator/write_cd_rules

index 1dbe6b70dea1a033fd32dc3c26643ae14d991775..d74b20128d1d5027f2883e0a27d5be3480dbbc06 100644 (file)
@@ -16,7 +16,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() {