summaryrefslogtreecommitdiff
path: root/kexdhs.c
diff options
context:
space:
mode:
authordjm <djm>2010-11-20 04:15:49 +0000
committerdjm <djm>2010-11-20 04:15:49 +0000
commitbfdd30879dbd4edd13fa10b9f3c667c38c55f918 (patch)
tree74dafe080aab57b9e9394641e97ef377486541e8 /kexdhs.c
parent613203f80502d5e1501ca53a030fdab19eb0373b (diff)
downloadopenssh-bfdd30879dbd4edd13fa10b9f3c667c38c55f918.tar.gz
- 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 'kexdhs.c')
-rw-r--r--kexdhs.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/kexdhs.c b/kexdhs.c
index e722877d..f56e8876 100644
--- a/kexdhs.c
+++ b/kexdhs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kexdhs.c,v 1.11 2010/02/26 20:29:54 djm Exp $ */
+/* $OpenBSD: kexdhs.c,v 1.12 2010/11/10 01:33:07 djm Exp $ */
/*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
*
@@ -31,6 +31,8 @@
#include <string.h>
#include <signal.h>
+#include <openssl/dh.h>
+
#include "xmalloc.h"
#include "buffer.h"
#include "key.h"