summaryrefslogtreecommitdiff
path: root/dh.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2019-10-09 22:59:48 +0100
committerColin Watson <cjwatson@debian.org>2019-10-09 23:39:39 +0100
commit767ee84d3465b6d244a9108de5c167a9ab866df9 (patch)
tree69b14ef6a62d7f133298a21d2ad6046f130b7801 /dh.c
parentddeaf9ee7d5c6612b88f1c4a83fc6fbccb93bf60 (diff)
parentefef12825b9582c1710da3b7e50135870963d4f4 (diff)
New upstream release (8.1p1)
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..7cb135d7d 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.71 2019/09/06 06:08:11 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"