aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-01-13 17:15:28 +0100
committerRichard Levitte <levitte@openssl.org>2016-01-13 17:46:07 +0100
commitb97c8c0ef235425b56a4313a4de1b80a0266cfb8 (patch)
treebaf3450db9bee0ca81a99c6f5debcf49a272d0ad
parent412a963c5869d3e59ac753b93f6407947e21ca27 (diff)
downloadopenssl-b97c8c0ef235425b56a4313a4de1b80a0266cfb8.tar.gz
After EVP_CIPHER turned opaque, e_rc5.c needs to include evp_int.h
We missed this one because rc5 is disabled by default. Notified by The Doctor <doctor@doctor.nl2k.ab.ca> Reviewed-by: Rich Salz <rsalz@openssl.org>
-rw-r--r--crypto/evp/e_rc5.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/evp/e_rc5.c b/crypto/evp/e_rc5.c
index 017a7abeb2..a97f2a08bd 100644
--- a/crypto/evp/e_rc5.c
+++ b/crypto/evp/e_rc5.c
@@ -62,6 +62,7 @@
#ifndef OPENSSL_NO_RC5
# include <openssl/evp.h>
+# include <internal/evp_int.h>
# include <openssl/objects.h>
# include "evp_locl.h"
# include <openssl/rc5.h>