From 645c5c54675a1996afcbe2b192cd882b60a8057c Mon Sep 17 00:00:00 2001 From: Jean Paul Galea Date: Fri, 17 Jul 2015 23:38:17 +0200 Subject: [PATCH] Fix bug. - this was not introduced by my refactoring. - LOG_ALERT message was incorrect, probably yy,p from counter block. --- ykval-synclib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ykval-synclib.php b/ykval-synclib.php index f8e0eff..e8dd5de 100644 --- a/ykval-synclib.php +++ b/ykval-synclib.php @@ -247,7 +247,7 @@ class SyncLib $i = preg_match("/^nonce=([[:alnum:]]+)/m", $str, $out); 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];