bugfix: prevent endless loop at startup with disable attribute

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@6759 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
hexenmeister
2014-10-12 21:31:50 +00:00
parent f973c3b9ff
commit d59934f61d

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};
}