1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-01-20 10:52:15 +01:00

Corrected spelling error for replayed_request

This commit is contained in:
Olov Danielson 2010-01-20 14:06:57 +00:00
parent 1809e7fb90
commit 93652d54f6

View File

@ -221,7 +221,7 @@ $otpParams=array('modified'=>time(),
if ($sync->countersEqual($localParams, $otpParams) && if ($sync->countersEqual($localParams, $otpParams) &&
$localParams['nonce']==$otpParams['nonce']) { $localParams['nonce']==$otpParams['nonce']) {
$myLog->log(LOG_WARNING, 'Replayed request'); $myLog->log(LOG_WARNING, 'Replayed request');
sendResp(S_REPLAYED_REQUEST, $apikey, $extra); sendResp(S_REPLAYED_REQUEST, $apiKey, $extra);
exit; exit;
} }