diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-02-10 23:02:16 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-02-10 23:02:16 +0000 |
commit | 4857227f111446954da3b202d7318feb6fba705c (patch) | |
tree | d8d4a9c393831b2134fb7819863435a6a0e6fc86 | |
parent | 14e9bb9ec3cd76c86d4dd4e30e840aedba81f20c (diff) | |
download | rspamd-4857227f111446954da3b202d7318feb6fba705c.tar.gz rspamd-4857227f111446954da3b202d7318feb6fba705c.zip |
Fix arguments order
-rw-r--r-- | src/libcryptobox/cryptobox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcryptobox/cryptobox.c b/src/libcryptobox/cryptobox.c index 1971e42ce..fe2cff29e 100644 --- a/src/libcryptobox/cryptobox.c +++ b/src/libcryptobox/cryptobox.c @@ -1105,7 +1105,7 @@ rspamd_cryptobox_encryptv_nm_inplace (struct rspamd_cryptobox_segment *segments, rspamd_cryptobox_flush_outbuf (start_seg, outbuf, sizeof (outbuf) - remain, seg_offset); - rspamd_cryptobox_cleanup (auth_ctx, enc_ctx, mode); + rspamd_cryptobox_cleanup (enc_ctx, auth_ctx, mode); } gboolean |