summaryrefslogtreecommitdiffstats
path: root/crypto/dh
diff options
context:
space:
mode:
authorDavide Galassi <davxy@datawok.net>2020-02-02 10:11:29 +0100
committerMatt Caswell <matt@openssl.org>2020-02-03 15:58:07 +0000
commit5a778ce5740b9bad7c19e2d160071773314ad099 (patch)
tree237639f36a6b79b4154fea935b03ad6e2eb7cfe6 /crypto/dh
parent04bc70d7373300d378aa9c075289d1ee404ec528 (diff)
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 'crypto/dh')
-rw-r--r--crypto/dh/dh_lib.c8
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)