bugfix: prevent endless loop at startup with disable attribute

git-svn-id: https://svn.fhem.de/fhem/trunk@6759 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
hexenmeister
2014-10-12 21:31:50 +00:00
parent e55a04799a
commit 9d4e8beec4

View File

@@ -30,7 +30,7 @@ package main;
use strict;
use warnings;
my $VERSION = "1.9.4.1";
my $VERSION = "1.9.4.2";
use constant {
PERL_VERSION => "perl_version",
@@ -622,7 +622,7 @@ SYSMON_Attr($$$)
InternalTimer(gettimeofday()+$hash->{INTERVAL_BASE}, "SYSMON_Update", $hash, 0);
}
#$hash->{LOCAL} = 1;
SYSMON_Update($hash);
#SYSMON_Update($hash);
#delete $hash->{LOCAL};
}