2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-29 23:47:10 +00:00

HttpUtils.pm: fix warning (Forum #55226)

git-svn-id: https://svn.fhem.de/fhem/trunk@11737 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-07-04 06:47:00 +00:00
parent b11ad752de
commit 36974a2872

View File

@ -460,7 +460,7 @@ HttpUtils_DigestHeader($$)
if(exists($digdata{qop})) { if(exists($digdata{qop})) {
$digdata{nc} = "00000001"; $digdata{nc} = "00000001";
$digdata{cnonce} = md5_hex(rand.time); $digdata{cnonce} = md5_hex(rand().time());
} }
$digdata{uri} = $hash->{path}; $digdata{uri} = $hash->{path};
$digdata{username} = $user; $digdata{username} = $user;