diff options
author | Niels Möller <nisse@lysator.liu.se> | 2021-09-09 21:40:59 +0200 |
---|---|---|
committer | Niels Möller <nisse@lysator.liu.se> | 2021-09-09 21:40:59 +0200 |
commit | 41a72c24ed204220a1012ec3f3fd947dea4eb497 (patch) | |
tree | 5ada71334c962c93ae337743f919c3310ebb41b3 /cbc-aes192-encrypt.c | |
parent | 419d7af5505230f378fd3f8340e374e07908b82d (diff) | |
download | nettle-41a72c24ed204220a1012ec3f3fd947dea4eb497.tar.gz |
Fix checks of HAVE_NATIVE_cbc_aes*_encrypt
Diffstat (limited to 'cbc-aes192-encrypt.c')
-rw-r--r-- | cbc-aes192-encrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cbc-aes192-encrypt.c b/cbc-aes192-encrypt.c index e0586d34..fa9d10b4 100644 --- a/cbc-aes192-encrypt.c +++ b/cbc-aes192-encrypt.c @@ -36,7 +36,7 @@ #include "cbc.h" /* For fat builds */ -#if HAVE_NATIVE_aes192_encrypt +#if HAVE_NATIVE_cbc_aes192_encrypt void _nettle_cbc_aes192_encrypt_c(struct cbc_aes192_ctx *ctx, size_t length, uint8_t *dst, |