diff options
Diffstat (limited to 'scripts/vyatta-cli-expand-var.pl')
-rwxr-xr-x | scripts/vyatta-cli-expand-var.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vyatta-cli-expand-var.pl b/scripts/vyatta-cli-expand-var.pl index 2691615..f690f0b 100755 --- a/scripts/vyatta-cli-expand-var.pl +++ b/scripts/vyatta-cli-expand-var.pl @@ -21,7 +21,7 @@ use strict; use lib "/opt/vyatta/share/perl5/"; -use VyattaConfig; +use Vyatta::Config; # expand a variable reference if ($#ARGV != 0) { @@ -59,7 +59,7 @@ if (/\@/) { exit 1; } -my $config = new VyattaConfig; +my $config = new Vyatta::Config; my $path_str = join ' ', (split /\//); my $val_str = ""; if ($multi_val) { |