From mboxrd@z Thu Jan 1 00:00:00 1970 From: Harald Hoyer Date: Mon, 22 Dec 2008 11:26:06 +0000 Subject: [PATCH] fix enumeration for write_cd_rules Message-Id: <494F794E.8040502@redhat.com> MIME-Version: 1 Content-Type: multipart/mixed; boundary="------------070209060201060500070802" List-Id: To: linux-hotplug@vger.kernel.org This is a multi-part message in MIME format. --------------070209060201060500070802 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit --------------070209060201060500070802 Content-Type: text/plain; name="0001-quote-as-it-would-be-taken-as-a-part-of-the-regex.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename*0="0001-quote-as-it-would-be-taken-as-a-part-of-the-regex.patch" >From 59dbbb61c7c9bd15aa19f9e88334d9e75c3a3ab2 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Mon, 22 Dec 2008 12:23:34 +0100 Subject: [PATCH] quote +, as it would be taken as a part of the regexp otherwise fix for https://bugzilla.redhat.com/show_bug.cgi?id=477535 --- extras/rule_generator/write_cd_rules | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/extras/rule_generator/write_cd_rules b/extras/rule_generator/write_cd_rules index 8de2276..398cd27 100644 --- a/extras/rule_generator/write_cd_rules +++ b/extras/rule_generator/write_cd_rules @@ -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() { -- 1.6.0.4 --------------070209060201060500070802--