mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-19 12:46: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:
parent
a02f462c80
commit
fabeefb2df
@ -147,7 +147,7 @@ allowed_Authenticate($$$$)
|
|||||||
my $pw = AttrVal($aName, "password", undef);
|
my $pw = AttrVal($aName, "password", undef);
|
||||||
if(!$pw) {
|
if(!$pw) {
|
||||||
$pw = AttrVal($aName, "globalpassword", undef);
|
$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 0 if(!$pw);
|
||||||
return 2 if(!defined($param));
|
return 2 if(!defined($param));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user