Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
99b526d0
Commit
99b526d0
authored
Oct 20, 2010
by
Jonathon Duerig
Browse files
Fixed bug preventing virtualization_subtype from being read properly.
parent
19783e58
Changes
1
Hide whitespace changes
Inline
Side-by-side
protogeni/lib/GeniXML.pm.in
View file @
99b526d0
...
...
@@ -319,6 +319,11 @@ sub GetSubnodeOf($)
}
}
}
if (defined($result)) {
carp("--subnode = ".$result);
} else {
carp("--subnode undefined");
}
return $result;
}
...
...
@@ -347,7 +352,7 @@ sub GetVirtualizationSubtype($)
my ($node) = @_;
my $result = undef;
if (IsVersion0($node)) {
my
$result = GeniXML::GetText("virtualization_subtype", $node);
$result = GeniXML::GetText("virtualization_subtype", $node);
} else {
my @types = FindNodes("n:type", $node)->get_nodelist();
foreach my $current (@types) {
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment