1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2024-11-29 09:24:12 +01:00
- this was not introduced by my refactoring.

- LOG_ALERT message was incorrect,
	probably yy,p from counter block.
This commit is contained in:
Jean Paul Galea 2015-07-17 23:38:17 +02:00
parent 3aecc617c3
commit 645c5c5467

View File

@ -247,7 +247,7 @@ class SyncLib
$i = preg_match("/^nonce=([[:alnum:]]+)/m", $str, $out); $i = preg_match("/^nonce=([[:alnum:]]+)/m", $str, $out);
if ($i != 1) { if ($i != 1) {
$this->log(LOG_ALERT, "cannot parse counter value: $str"); $this->log(LOG_ALERT, "cannot parse nonce value: $str");
} }
$resParams['nonce']=$out[1]; $resParams['nonce']=$out[1];