From 5d88388df0b587cd0d31dd172db6e9d7e45c700f Mon Sep 17 00:00:00 2001 From: Kirill Okhotnikov Date: Mon, 9 Feb 2015 11:17:44 +0100 Subject: [PATCH] Warning of unsed function "aes_ctr_encrypt_counter" were fixed. --- libarchive/archive_cryptor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libarchive/archive_cryptor.c b/libarchive/archive_cryptor.c index c4db96bc1..ac2ad9cbb 100644 --- a/libarchive/archive_cryptor.c +++ b/libarchive/archive_cryptor.c @@ -366,6 +366,7 @@ aes_ctr_update(archive_crypto_ctx *ctx, const uint8_t * const in, (void)in_len; /* UNUSED */ (void)out; /* UNUSED */ (void)out_len; /* UNUSED */ + aes_ctr_encrypt_counter(ctx); /* UNUSED */ /* Fix unused function warning */ return -1; } -- 2.47.2