Correct syntax error

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9456 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2011-05-02 15:06:16 +00:00
parent 539282a4d2
commit 3e9de10d4a

View File

@ -1554,7 +1554,7 @@ sub chvm {
$vmxml=$confdata->{kvmnodedata}->{$node}->[0]->{xml};
}
my $domparsed = $parser->parse_string($vmxml);
my $candidatenodes=$domparsed->findnodes("//disk\@device='cdrom']");
my $candidatenodes=$domparsed->findnodes("//disk[\@device='cdrom']");
if (scalar (@$candidatenodes) != 1) {
die "shouldn't be possible, should only have one cdrom";
}