Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierBerger committed Aug 23, 2016
2 parents 4899346 + 083fbca commit 4c9d524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/usr/bin/rpimonitord
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ sub LoadFile
while (<FILE>){
chomp;
/^\s*#|^$/ and next; # Ignore comments
/^include=(.*)/ and -f $1 and push($this->{'daemon'}->{'confFiles'}, $1) and next;
/^include=(.*)/ and -f $1 and push(@{$this->{'daemon'}->{'confFiles'}}, $1) and next;
my ($key, $value) = /^([^=]*)=(.*)/; # Extract key and value
my @leaves=split('\.', $key); # Explode key and construct config hash
my $tree=$this;
Expand Down

0 comments on commit 4c9d524

Please sign in to comment.