summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Fuhrmannek2021-08-06 16:40:57 +0200
committerjvoisin2021-08-14 17:14:57 +0200
commit408601c2daf4539df8c39d8cc740a4e72596cc97 (patch)
treeec4bb65589d7c080ca5a60b264ddc1544213448d
parent1310a53e705a5500335dc05e14e4f74f2be24668 (diff)
fixed incorrect debug log invocation
-rw-r--r--src/sp_cookie_encryption.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp_cookie_encryption.c b/src/sp_cookie_encryption.c
index 92a056b..7bcedd2 100644
--- a/src/sp_cookie_encryption.c
+++ b/src/sp_cookie_encryption.c
@@ -33,7 +33,7 @@ int decrypt_cookie(zval *pDest, int num_args, va_list args,
33 33
34static zend_string *encrypt_data(zend_string *data) { 34static zend_string *encrypt_data(zend_string *data) {
35 zend_string *z = encrypt_zval(data); 35 zend_string *z = encrypt_zval(data);
36 sp_log_debug("cookie_encryption", "Cookie value:%s:", ZSTR_VAL(z)); 36 sp_log_debug("Cookie value:%s:", ZSTR_VAL(z));
37 return z; 37 return z;
38} 38}
39 39