From: Davide Galassi Date: Sun, 2 Feb 2020 09:11:29 +0000 (+0100) Subject: Missing "obj_mac" header file in "dh_lib" X-Git-Tag: openssl-3.0.0-alpha1~564 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5a778ce5740b9bad7c19e2d160071773314ad099;p=oweals%2Fopenssl.git 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) --- 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)