mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
rereadcfg bugfix
git-svn-id: https://svn.fhem.de/fhem/trunk@424 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
e7c235a67e
commit
a25314b4f8
@ -521,3 +521,5 @@
|
|||||||
- bugfix: Uniform check for windows, enable CUL for windows.
|
- bugfix: Uniform check for windows, enable CUL for windows.
|
||||||
- bugfix: CUL/HMS parsing patches from Peter
|
- bugfix: CUL/HMS parsing patches from Peter
|
||||||
- bugfix: Fixes for Windows by Klaus
|
- bugfix: Fixes for Windows by Klaus
|
||||||
|
- bugfix: Another "rereadcfg" bugfix
|
||||||
|
- feature: Update to the current (1.27) CUL FHT interface
|
||||||
|
@ -151,7 +151,7 @@ my %defaultattr; # Default attributes
|
|||||||
my %intAt; # Internal at timer hash.
|
my %intAt; # Internal at timer hash.
|
||||||
my $nextat; # Time when next timer will be triggered.
|
my $nextat; # Time when next timer will be triggered.
|
||||||
my $intAtCnt=0;
|
my $intAtCnt=0;
|
||||||
my $cvsid = '$Id: fhem.pl,v 1.77 2009-08-04 08:03:57 rudolfkoenig Exp $';
|
my $cvsid = '$Id: fhem.pl,v 1.78 2009-08-12 08:01:49 rudolfkoenig Exp $';
|
||||||
my $namedef =
|
my $namedef =
|
||||||
"where <name> is either:\n" .
|
"where <name> is either:\n" .
|
||||||
"- a single device name\n" .
|
"- a single device name\n" .
|
||||||
@ -317,6 +317,7 @@ while (1) {
|
|||||||
# reported by select, but is used by unix too, to check if the device is
|
# reported by select, but is used by unix too, to check if the device is
|
||||||
# attached again.
|
# attached again.
|
||||||
foreach my $p (keys %selectlist) {
|
foreach my $p (keys %selectlist) {
|
||||||
|
next if(!$selectlist{$p}); # due to rereadcfg / delete
|
||||||
CallFn($selectlist{$p}{NAME}, "ReadFn", $selectlist{$p})
|
CallFn($selectlist{$p}{NAME}, "ReadFn", $selectlist{$p})
|
||||||
if(vec($rout, $selectlist{$p}{FD}, 1));
|
if(vec($rout, $selectlist{$p}{FD}, 1));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user