From 41388bbe4b41988dd42111dbc131fc5a024ba69c Mon Sep 17 00:00:00 2001 From: LeonGaultier Date: Fri, 23 Apr 2021 03:19:15 +0000 Subject: [PATCH] lib/FHEM/Core/Authentication/Passwords.pm: change double quotes syntax git-svn-id: https://svn.fhem.de/fhem/trunk@24313 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/lib/FHEM/Core/Authentication/Passwords.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fhem/lib/FHEM/Core/Authentication/Passwords.pm b/fhem/lib/FHEM/Core/Authentication/Passwords.pm index 80f2e9ecb..f6e4df491 100644 --- a/fhem/lib/FHEM/Core/Authentication/Passwords.pm +++ b/fhem/lib/FHEM/Core/Authentication/Passwords.pm @@ -72,7 +72,7 @@ sub new { sub setStorePassword { my $self = shift; my $name = shift; - my $password = shift // return(undef,q{no password given}); + my $password = shift // return(undef,q(no password given)); my $index = $self->{TYPE} . '_' . $name . '_passkey'; my ($x,$y) = ::gettimeofday(); @@ -122,14 +122,14 @@ sub getReadPassword { my $index = $self->{TYPE} . '_' . $name . '_passkey'; my ( $password, $err, $salt ); - ::Log3($name, 4, qq{password Keystore handle for Device ($name) - Read password from file}); + ::Log3($name, 4, qq(password Keystore handle for Device ($name) - Read password from file)); ( $err, $password ) = ::getKeyValue($index); if ( defined($err) ) { ::Log3($name, 1, -qq{password Keystore handle for Device ($name) - unable to read password from file: $err}); +qq(password Keystore handle for Device ($name) - unable to read password from file: $err)); return undef; } @@ -161,7 +161,7 @@ qq{password Keystore handle for Device ($name) - unable to read password from fi } else { - ::Log3($name, 1, qq{password Keystore handle for Device ($name) - No password in file}); + ::Log3($name, 1, qq(password Keystore handle for Device ($name) - No password in file)); return undef; } }