Skip to content

Commit 4c9d524

Browse files
committed
2 parents 4899346 + 083fbca commit 4c9d524

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/usr/bin/rpimonitord

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ sub LoadFile
181181
while (<FILE>){
182182
chomp;
183183
/^\s*#|^$/ and next; # Ignore comments
184-
/^include=(.*)/ and -f $1 and push($this->{'daemon'}->{'confFiles'}, $1) and next;
184+
/^include=(.*)/ and -f $1 and push(@{$this->{'daemon'}->{'confFiles'}}, $1) and next;
185185
my ($key, $value) = /^([^=]*)=(.*)/; # Extract key and value
186186
my @leaves=split('\.', $key); # Explode key and construct config hash
187187
my $tree=$this;

0 commit comments

Comments
 (0)