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
This commit is contained in:
ligc 2010-08-17 08:08:58 +00:00
parent 021457531b
commit 75cdca63e6

View File

@ -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;