diff options
author | Michael Larson <slioch@slioch.vyatta.com> | 2009-12-01 17:05:30 -0800 |
---|---|---|
committer | Michael Larson <slioch@slioch.vyatta.com> | 2009-12-14 16:49:32 -0800 |
commit | 0bf36f892de68c91f62da36cc0e20473f338f860 (patch) | |
tree | 22b3b52731b17e37817b58e1bf1b6de3f988fc5a | |
parent | a47a1fd6552bb413789d44efef96b699d110f458 (diff) | |
download | vyatta-cfg-0bf36f892de68c91f62da36cc0e20473f338f860.tar.gz vyatta-cfg-0bf36f892de68c91f62da36cc0e20473f338f860.zip |
fix for bug 4999
-rwxr-xr-x | lib/Vyatta/Config.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Vyatta/Config.pm b/lib/Vyatta/Config.pm index b7d9050..7b999b2 100755 --- a/lib/Vyatta/Config.pm +++ b/lib/Vyatta/Config.pm @@ -409,7 +409,7 @@ sub returnValues { # node is relative sub returnOrigPlusComValues { my ( $self, $path ) = @_; - my @values = returnValues($self,$path); + my @values = returnOrigValues($self,$path); #now parse the commit accounting file. my $level = $self->{_level}; |