2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-12 22:56:34 +00:00

fhem.pl: AssignIoPort bugfix

git-svn-id: https://svn.fhem.de/fhem/trunk@5156 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2014-03-06 22:57:44 +00:00
parent 91b711e6a6
commit a9cf80b896

View File

@ -1493,7 +1493,7 @@ CommandDefine($$)
my $ret = CallFn($name, "DefFn", \%hash, $def);
if($ret) {
Log 1, "define: $ret";
Log 1, "define $name $def: $ret";
delete $defs{$name}; # Veto
delete $attr{$name};
@ -1572,6 +1572,7 @@ AssignIoPort($;$)
$hash->{IODev} = 0;
}
}
return undef;
}