summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-06-28 21:02:19 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-06-28 21:02:19 +0200
commit17d7b74dafe993529c7ab5e53f317c6f8d7cf4e7 (patch)
treecd6f3a057d59314624142d34ac937ec047e473f2
parent54a3574537b36ee60d21b0afe87940a42afe106c (diff)
downloadfastd-17d7b74dafe993529c7ab5e53f317c6f8d7cf4e7.tar
fastd-17d7b74dafe993529c7ab5e53f317c6f8d7cf4e7.zip
Fix build with ENABLE_OPENSSL
-rw-r--r--src/crypto/cipher/aes128_ctr/openssl/aes128_ctr_openssl.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/crypto/cipher/aes128_ctr/openssl/aes128_ctr_openssl.c b/src/crypto/cipher/aes128_ctr/openssl/aes128_ctr_openssl.c
index 2e06763..0bf4bbc 100644
--- a/src/crypto/cipher/aes128_ctr/openssl/aes128_ctr_openssl.c
+++ b/src/crypto/cipher/aes128_ctr/openssl/aes128_ctr_openssl.c
@@ -81,8 +81,6 @@ static void aes128_ctr_free(fastd_cipher_state_t *state) {
/** The openssl aes128-ctr implementation */
const fastd_cipher_t fastd_cipher_aes128_ctr_openssl = {
- .available = fastd_true,
-
.init = aes128_ctr_init,
.crypt = aes128_ctr_crypt,
.free = aes128_ctr_free,