*** empty log message ***

git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@731 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
neubert
2010-10-24 09:21:44 +00:00
parent dd2a46efe4
commit d53000f35c

View File

@@ -628,7 +628,7 @@ getFhtBuffer($)
return getFhtMin($io) if(IsDummy($io->{NAME})); return getFhtMin($io) if(IsDummy($io->{NAME}));
for(;;) { for(;;) {
return 0 if(!define($io->{FD})); # Avoid crash if the CUL/FHZ is absent return 0 if(!defined($io->{FD})); # Avoid crash if the CUL/FHZ is absent
my $msg = CallFn($io->{NAME}, "GetFn", $io, (" ", "fhtbuf")); my $msg = CallFn($io->{NAME}, "GetFn", $io, (" ", "fhtbuf"));
Log 5, "getFhtBuffer: $count $msg"; Log 5, "getFhtBuffer: $count $msg";
return hex($1) if($msg && $msg =~ m/=> ([0-9A-F]+)$/i); return hex($1) if($msg && $msg =~ m/=> ([0-9A-F]+)$/i);