diff options
| author | Ben Fuhrmannek | 2021-08-06 16:40:57 +0200 |
|---|---|---|
| committer | jvoisin | 2021-08-14 17:14:57 +0200 |
| commit | 408601c2daf4539df8c39d8cc740a4e72596cc97 (patch) | |
| tree | ec4bb65589d7c080ca5a60b264ddc1544213448d | |
| parent | 1310a53e705a5500335dc05e14e4f74f2be24668 (diff) | |
fixed incorrect debug log invocation
| -rw-r--r-- | src/sp_cookie_encryption.c | 2 |
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 | ||
| 34 | static zend_string *encrypt_data(zend_string *data) { | 34 | static 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 | ||
