summaryrefslogtreecommitdiff
path: root/src/sp_cookie_encryption.c
diff options
context:
space:
mode:
authorBen Fuhrmannek2021-08-06 16:40:57 +0200
committerBen Fuhrmannek2021-08-06 16:40:57 +0200
commit2b6086486be69533d0077585c7726b3efa175fe6 (patch)
treecce24ff634d0d576ca10d4036129f9dbc3d8e787 /src/sp_cookie_encryption.c
parent11141456a4c3026b2bc9b2b7ba6141622e8fcf3a (diff)
fixed incorrect debug log invocation
Diffstat (limited to 'src/sp_cookie_encryption.c')
-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