From: Kirill Okhotnikov Date: Mon, 9 Feb 2015 10:17:44 +0000 (+0100) Subject: Warning of unsed function "aes_ctr_encrypt_counter" were fixed. X-Git-Tag: v3.1.900a~94^2~1^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d88388df0b587cd0d31dd172db6e9d7e45c700f;p=thirdparty%2Flibarchive.git Warning of unsed function "aes_ctr_encrypt_counter" were fixed. --- 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; }