diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2016-03-18 12:30:53 +0000 |
---|---|---|
committer | Daniel P. Berrange <berrange@redhat.com> | 2016-03-21 10:02:22 +0000 |
commit | 621e6ae657d4cb44f19461db0796b09cca438778 (patch) | |
tree | 483ffbd246519bdca90a60bd7f1063f42791c365 /crypto | |
parent | 4829e0378dfb91d55af9dfd741bd09e8f2c4f91a (diff) |
crypto: add compat cast5_set_key with nettle < 3.0.0
Prior to the nettle 3.0.0 release, the cast5_set_key function
was actually named cast128_set_key, so we must add a compatibility
definition.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/cipher-nettle.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/cipher-nettle.c b/crypto/cipher-nettle.c index 3c982e483a..bec4f1c210 100644 --- a/crypto/cipher-nettle.c +++ b/crypto/cipher-nettle.c @@ -34,6 +34,8 @@ typedef nettle_crypt_func nettle_cipher_func; typedef void * cipher_ctx_t; typedef unsigned cipher_length_t; + +#define cast5_set_key cast128_set_key #else typedef const void * cipher_ctx_t; typedef size_t cipher_length_t; |