diff options
-rw-r--r-- | lib/Vyatta/Quagga/Config.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Vyatta/Quagga/Config.pm b/lib/Vyatta/Quagga/Config.pm index bf45c891..644024e5 100644 --- a/lib/Vyatta/Quagga/Config.pm +++ b/lib/Vyatta/Quagga/Config.pm @@ -379,7 +379,7 @@ sub _qtree { # This is either a set or delete on a single or multi: node if ($action eq 'set') { - my $tmplhash = $config->parseTmplAll(join ' ', "$level $node"); + my $tmplhash = $config->parseTmplAll($node); if ($tmplhash->{'multi'}) { if ($_DEBUG > 2) { print "DEBUG: multi\n"; } @vals = $config->returnValues($node); @@ -390,7 +390,7 @@ sub _qtree { } } else { - my $tmplhash = $config->parseTmplAll(join ' ', "$level $node"); + my $tmplhash = $config->parseTmplAll($node); if ($tmplhash->{'multi'}) { if ($_DEBUG > 2) { print "DEBUG: multi\n"; } @vals = $config->returnOrigValues($node); |