summaryrefslogtreecommitdiff
path: root/dh.c
diff options
context:
space:
mode:
Diffstat (limited to 'dh.c')
-rw-r--r--dh.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/dh.c b/dh.c
index a98d39ed5..2d306f3d7 100644
--- a/dh.c
+++ b/dh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: dh.c,v 1.69 2018/11/09 02:56:22 djm Exp $ */ 1/* $OpenBSD: dh.c,v 1.70 2019/09/06 05:23:55 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Niels Provos. All rights reserved. 3 * Copyright (c) 2000 Niels Provos. All rights reserved.
4 * 4 *
@@ -27,9 +27,6 @@
27 27
28#ifdef WITH_OPENSSL 28#ifdef WITH_OPENSSL
29 29
30#include <openssl/bn.h>
31#include <openssl/dh.h>
32
33#include <errno.h> 30#include <errno.h>
34#include <stdarg.h> 31#include <stdarg.h>
35#include <stdio.h> 32#include <stdio.h>
@@ -37,6 +34,9 @@
37#include <string.h> 34#include <string.h>
38#include <limits.h> 35#include <limits.h>
39 36
37#include <openssl/bn.h>
38#include <openssl/dh.h>
39
40#include "dh.h" 40#include "dh.h"
41#include "pathnames.h" 41#include "pathnames.h"
42#include "log.h" 42#include "log.h"