From 809d583da6fae1be68ab23150fb4de41f4777d99 Mon Sep 17 00:00:00 2001 From: Paul Chen Date: Mon, 8 Dec 2008 23:40:11 +0000 Subject: [PATCH] bugfix verify otp --- verifyOTP.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verifyOTP.php b/verifyOTP.php index cb03520..a343921 100644 --- a/verifyOTP.php +++ b/verifyOTP.php @@ -71,7 +71,7 @@ if ($ad['chk_sig'] && $h == '') { // Compare it if ($hmac != $h) { sendResp(S_BAD_SIGNATURE); - debug('h=' . $h . ', hmac=' . $hmac); + debug('client hmac=' . $h . ', server hmac=' . $hmac); exit; } }