FB_CALLMONITOR: fixing non existing InitFn for DevIo call

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@4984 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
markusbloch
2014-02-18 16:50:42 +00:00
parent 26ffe3ab54
commit e734c1a633

View File

@@ -119,7 +119,7 @@ FB_CALLMONITOR_Define($$)
$hash->{DeviceName} = $dev;
my $ret = DevIo_OpenDev($hash, 0, "FB_CALLMONITOR_DoInit");
my $ret = DevIo_OpenDev($hash, 0, undef);
@@ -327,7 +327,7 @@ FB_CALLMONITOR_Attr($@)
{
if($a[3] eq "0")
{
DevIo_OpenDev($hash, 0, "FB_CALLMONITOR_DoInit");
DevIo_OpenDev($hash, 0, undef);
}
elsif($a[3] eq "1")
{
@@ -347,7 +347,7 @@ FB_CALLMONITOR_Attr($@)
if( $a[2] eq "disable")
{
DevIo_OpenDev($hash, 0, "FB_CALLMONITOR_DoInit");
DevIo_OpenDev($hash, 0, undef);
}
}