summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlib/Vyatta/Keepalived.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Vyatta/Keepalived.pm b/lib/Vyatta/Keepalived.pm
index 403d385..870af98 100755
--- a/lib/Vyatta/Keepalived.pm
+++ b/lib/Vyatta/Keepalived.pm
@@ -169,10 +169,10 @@ sub get_state_files {
my @state_files;
if ($group eq "all") {
- @state_files = grep { /^vrrpd_$intf.*\.state$/ } $sdir;
+ @state_files = grep { /^vrrpd_$intf.*\.state$/ } readdir($sdir);
} else {
my $intf_group = $intf . "_" . $group . ".state";
- @state_files = grep { /^vrrpd_$intf_group$/ } $sdir;
+ @state_files = grep { /^vrrpd_$intf_group$/ } readdir($sdir);
}
close $sdir;