summaryrefslogtreecommitdiff
path: root/kexdhc.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-11-20 15:15:49 +1100
committerDamien Miller <djm@mindrot.org>2010-11-20 15:15:49 +1100
commit4499f4cc20eee7e0f67b35f5a5c6078bf07dcbc0 (patch)
treef4d827008f691988ecb163d0748648e10f2b0c25 /kexdhc.c
parent7a221a159188eceeea366d4f58345d2bdccaeb8d (diff)
- djm@cvs.openbsd.org 2010/11/10 01:33:07
[kexdhc.c kexdhs.c kexgexc.c kexgexs.c key.c moduli.c] use only libcrypto APIs that are retained with OPENSSL_NO_DEPRECATED. these have been around for years by this time. ok markus
Diffstat (limited to 'kexdhc.c')
-rw-r--r--kexdhc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/kexdhc.c b/kexdhc.c
index d384c8052..76ceb5dd8 100644
--- a/kexdhc.c
+++ b/kexdhc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: kexdhc.c,v 1.11 2006/11/06 21:25:28 markus Exp $ */ 1/* $OpenBSD: kexdhc.c,v 1.12 2010/11/10 01:33:07 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2001 Markus Friedl. All rights reserved. 3 * Copyright (c) 2001 Markus Friedl. All rights reserved.
4 * 4 *
@@ -27,6 +27,8 @@
27 27
28#include <sys/types.h> 28#include <sys/types.h>
29 29
30#include <openssl/dh.h>
31
30#include <stdarg.h> 32#include <stdarg.h>
31#include <stdio.h> 33#include <stdio.h>
32#include <string.h> 34#include <string.h>