diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-12-17 18:47:34 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-12-17 18:47:34 +0000 |
commit | 760a514e84e0ba8e7dfe0840b8ee9cba47fabc88 (patch) | |
tree | c96f9208b2a5a437d1a0bde97885e088223c042c | |
parent | 0b2a4a74370b4c0596306fc001fcb43235f123b8 (diff) | |
download | rspamd-760a514e84e0ba8e7dfe0840b8ee9cba47fabc88.tar.gz rspamd-760a514e84e0ba8e7dfe0840b8ee9cba47fabc88.zip |
Fix issue with base32 printing
-rw-r--r-- | src/libutil/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/printf.c b/src/libutil/printf.c index c558b805a..047532dd2 100644 --- a/src/libutil/printf.c +++ b/src/libutil/printf.c @@ -579,7 +579,7 @@ rspamd_vprintf_common (rspamd_printf_append_func func, b32buf = rspamd_encode_base32 (p, slen); if (b32buf) { - RSPAMD_PRINTF_APPEND_BUF (b32buf, strlen (b32buf)); + RSPAMD_PRINTF_APPEND (b32buf, strlen (b32buf)); g_free (b32buf); } } |