From: Greg Hudson Date: Sat, 5 Mar 2011 14:33:37 +0000 (+0000) Subject: Fix a conceptual (but not practical) type mismatch in the OpenSSL X-Git-Tag: krb5-1.10-alpha1~553 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0ea08cb07b8dfe7f0977a2bfe965c463fff5634f;p=krb5.git Fix a conceptual (but not practical) type mismatch in the OpenSSL module's mit_des_fixup_key_parity resulting from r24677. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24683 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/crypto/openssl/des/f_parity.c b/src/lib/crypto/openssl/des/f_parity.c index 4956af266..1fb3f6eb8 100644 --- a/src/lib/crypto/openssl/des/f_parity.c +++ b/src/lib/crypto/openssl/des/f_parity.c @@ -31,5 +31,5 @@ void mit_des_fixup_key_parity(unsigned char *key) { - DES_set_odd_parity(key); + DES_set_odd_parity((DES_cblock *)key); }