1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2024-11-29 00:24:13 +01:00

Use bracket guards for substitution.

This commit is contained in:
Jean Paul Galea 2015-09-08 12:41:18 +02:00
parent 58ba93d35f
commit 4e49b4b7af
2 changed files with 2 additions and 2 deletions

View File

@ -85,5 +85,5 @@ foreach ($ksms as $ksm)
if (($total_time = total_time($ksm)) === FALSE)
$total_time = 'error';
echo "${shortksm}_avgwait.value $total_time\n";
echo "${shortksm}_avgwait.value ${total_time}\n";
}

View File

@ -85,5 +85,5 @@ foreach ($urls as $url)
if (($total_time = total_time($url)) === FALSE)
$total_time = 'error';
echo "${shortname}_avgwait.value $total_time\n";
echo "${shortname}_avgwait.value ${total_time}\n";
}