diff options
Diffstat (limited to 'knetworkconf/backends/xml.pl.in')
-rw-r--r-- | knetworkconf/backends/xml.pl.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/knetworkconf/backends/xml.pl.in b/knetworkconf/backends/xml.pl.in index 9421f75..dfd41cd 100644 --- a/knetworkconf/backends/xml.pl.in +++ b/knetworkconf/backends/xml.pl.in @@ -891,7 +891,7 @@ sub gst_xml_model_ensure next if ($elem eq ""); my @tqchildren = @$branch; - my $tqparent_branch = $branch; + my $parent_branch = $branch; shift @tqchildren; # Attributes $branch = undef; @@ -918,8 +918,8 @@ sub gst_xml_model_ensure push @list, \%hash; - push @$tqparent_branch, $elem; - push @$tqparent_branch, $branch; + push @$parent_branch, $elem; + push @$parent_branch, $branch; } } |