diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2021-05-16 08:24:22 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2021-05-16 08:24:22 +0000 |
commit | 2cd35a15b80852941afaba30292f04e2b501e5a0 (patch) | |
tree | 8317b01ceaa075093961019d7e5e771774d68e3f /lib/libssl/ssl_ciph.c | |
parent | 976cd6d28c830d626179f88297a0ef60fcf28cc5 (diff) |
Explicitly include <openssl/opensslconf.h> in files using OPENSSL_NO_*
Where a file references to OPENSSL_NO_* conditions, ensure that we
explicitly include <openssl/opensslconf.h> before any references, rather
than relying on another header to pull this in.
Diffstat (limited to 'lib/libssl/ssl_ciph.c')
-rw-r--r-- | lib/libssl/ssl_ciph.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/ssl_ciph.c b/lib/libssl/ssl_ciph.c index 2db531abb12..bf22c4ed999 100644 --- a/lib/libssl/ssl_ciph.c +++ b/lib/libssl/ssl_ciph.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_ciph.c,v 1.122 2021/05/10 17:03:57 tb Exp $ */ +/* $OpenBSD: ssl_ciph.c,v 1.123 2021/05/16 08:24:21 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -143,6 +143,7 @@ #include <stdio.h> #include <openssl/objects.h> +#include <openssl/opensslconf.h> #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> |