diff options
author | Davide Galassi <davxy@datawok.net> | 2020-02-02 10:11:29 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2020-02-03 16:58:07 +0100 |
commit | 5a778ce5740b9bad7c19e2d160071773314ad099 (patch) | |
tree | 237639f36a6b79b4154fea935b03ad6e2eb7cfe6 /crypto/dh/dh_lib.c | |
parent | Don't complain about documented symbols with find-doc-nits -d -o (diff) | |
download | openssl-5a778ce5740b9bad7c19e2d160071773314ad099.tar.xz openssl-5a778ce5740b9bad7c19e2d160071773314ad099.zip |
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 <levitte@openssl.org>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10996)
Diffstat (limited to '')
-rw-r--r-- | crypto/dh/dh_lib.c | 8 |
1 files 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 <stdio.h> -#include "internal/cryptlib.h" -#include "internal/refcount.h" #include <openssl/bn.h> -#include "dh_local.h" -#include "crypto/dh.h" #include <openssl/engine.h> +#include <openssl/obj_mac.h> +#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) |