2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-20 07:16:03 +00:00

96_allowed.pm: fix globalpassword checking (Forum #47383)

git-svn-id: https://svn.fhem.de/fhem/trunk@10496 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-01-14 06:10:38 +00:00
parent a02f462c80
commit fabeefb2df

View File

@ -147,7 +147,7 @@ allowed_Authenticate($$$$)
my $pw = AttrVal($aName, "password", undef);
if(!$pw) {
$pw = AttrVal($aName, "globalpassword", undef);
$pw = undef if($pw && $cl->{NAME} =~ m/^telnet:127.0.0.1/);
$pw = undef if($pw && $cl->{NAME} =~ m/_127.0.0.1_/);
}
return 0 if(!$pw);
return 2 if(!defined($param));