From 75cdca63e6e7a98f95f6ee1db18e4995554d427f Mon Sep 17 00:00:00 2001 From: ligc Date: Tue, 17 Aug 2010 08:08:58 +0000 Subject: [PATCH] fix for bug 3043788: the node attribut name may contain special characters such as . git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@7106 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/DBobjUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/DBobjUtils.pm b/perl-xCAT/xCAT/DBobjUtils.pm index d9fdef03f..7b8b0ec70 100644 --- a/perl-xCAT/xCAT/DBobjUtils.pm +++ b/perl-xCAT/xCAT/DBobjUtils.pm @@ -1626,7 +1626,7 @@ sub readFileInput push(@::fileobjnames, $objectname); } - elsif (($l =~ /^\s*(\w+)\s*=\s*(.*)\s*/) && (!$look_for_colon)) + elsif (($l =~ /^\s*(.*)\s*=\s*(.*)\s*/) && (!$look_for_colon)) { my $attr = $1; my $val = $2;