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

Use consistent camel-casing of function countersEqual().

Reduces confusion, even though PHP apparently has case insensitive
function names.
This commit is contained in:
Fredrik Thulin 2012-06-12 17:56:01 +02:00
parent af292fbcd6
commit dfaa9a89aa

View File

@ -440,13 +440,13 @@ class SyncLib
$this->log(LOG_NOTICE, "Local server out of sync");
}
if ($this->CountersEqual($resParams, $localParams) &&
if ($this->countersEqual($resParams, $localParams) &&
$resParams['nonce']!=$localParams['nonce']) {
$this->log(LOG_NOTICE, "Servers out of sync. Nonce differs. ");
}
if ($this->CountersEqual($resParams, $localParams) &&
if ($this->countersEqual($resParams, $localParams) &&
$resParams['modified']!=$localParams['modified']) {
$this->log(LOG_NOTICE, "Servers out of sync. Modified differs. ");
}