From 5a778ce5740b9bad7c19e2d160071773314ad099 Mon Sep 17 00:00:00 2001 From: Davide Galassi Date: Sun, 2 Feb 2020 10:11:29 +0100 Subject: [PATCH] Missing "obj_mac" header file in "dh_lib" Usage of `NID_undef` symbol without including its definition was causing a build fail Reviewed-by: Richard Levitte Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/10996) --- crypto/dh/dh_lib.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crypto/dh/dh_lib.c b/crypto/dh/dh_lib.c index f9fb1d9b71..0c1cccb5db 100644 --- a/crypto/dh/dh_lib.c +++ b/crypto/dh/dh_lib.c @@ -8,13 +8,13 @@ */ #include -#include "internal/cryptlib.h" -#include "internal/refcount.h" #include -#include "dh_local.h" -#include "crypto/dh.h" #include +#include +#include "internal/cryptlib.h" +#include "internal/refcount.h" #include "crypto/dh.h" +#include "dh_local.h" #ifndef FIPS_MODE int DH_set_method(DH *dh, const DH_METHOD *meth) -- 2.25.1