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:
parent
af292fbcd6
commit
dfaa9a89aa
@ -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. ");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user