summaryrefslogtreecommitdiff
path: root/lib/Vyatta/Config.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Vyatta/Config.pm')
-rwxr-xr-xlib/Vyatta/Config.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Vyatta/Config.pm b/lib/Vyatta/Config.pm
index 0e71ccf..93a2478 100755
--- a/lib/Vyatta/Config.pm
+++ b/lib/Vyatta/Config.pm
@@ -594,7 +594,7 @@ sub existsOrig {
my ($status, undef) = $self->getDeactivated($ttmp);
#only return value if status is not disabled (i.e. local or both)
if (defined($status) && ($status eq 'both' || $status eq 'active')) { #if a .disable is in local or active or both then return false
- return undef;
+ return;
}
}
@@ -678,7 +678,7 @@ sub getDeactivated {
$node =~ s/ /\//g;
while (1) {
- my $filepath = "$self->{_changes_only_dir_base}/$node";
+ my $filepath = "$self->{_new_config_dir_base}/$node";
my $filepathActive = "$self->{_active_dir_base}/$node";
my $local = $filepath . "/.disable";