aboutsummaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2017-08-03 16:21:01 -0400
committerRich Salz <rsalz@openssl.org>2017-08-06 17:06:19 -0400
commit5f8dd0f849d3bb87b2224715f8880716f39e9b0a (patch)
tree3ce718efa6c281c5f8ec1680fb4e7dd9f9811306 /ssl
parentc57c32a8b1e381a5f272e64db349ebadc1ce4ff5 (diff)
downloadopenssl-5f8dd0f849d3bb87b2224715f8880716f39e9b0a.tar.gz
Add missing include of cryptlib.h
Also use "" not <> for all include cryptlib Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4082)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/s3_lib.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index e36eb93ca7..fdccdb76c4 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -15,6 +15,7 @@
#include <openssl/md5.h>
#include <openssl/dh.h>
#include <openssl/rand.h>
+#include "internal/cryptlib.h"
#define SSL3_NUM_CIPHERS OSSL_NELEM(ssl3_ciphers)
#define SSL3_NUM_SCSVS OSSL_NELEM(ssl3_scsvs)