Fix edit mistake in cipher_wrap.c
Error was from 08c337d058bef
diff --git a/library/cipher_wrap.c b/library/cipher_wrap.c
index b1ab8f1..a9ef819 100644
--- a/library/cipher_wrap.c
+++ b/library/cipher_wrap.c
@@ -841,8 +841,7 @@
size_t length, unsigned char *iv,
const unsigned char *input, unsigned char *output )
{
- (void) operation;
- return mbedtls_aria_crypt_cbc( (mbedtls_aria_context *) ctx, length, iv,
+ return mbedtls_aria_crypt_cbc( (mbedtls_aria_context *) ctx, operation, length, iv,
input, output );
}
#endif /* MBEDTLS_CIPHER_MODE_CBC */