diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2010-11-10 01:33:08 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2010-11-10 01:33:08 +0000 |
commit | dd5782fa7760089f37d1a390e054de720cfa3fa1 (patch) | |
tree | 4ab09ed41e4f5618a2e3fefc868c7a1e0a33cef6 /usr.bin/ssh/kexgexs.c | |
parent | 4d873ebe99251c3e5fb6397497a0d18a109f0659 (diff) |
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 'usr.bin/ssh/kexgexs.c')
-rw-r--r-- | usr.bin/ssh/kexgexs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/kexgexs.c b/usr.bin/ssh/kexgexs.c index b751a7eeea3..0b90986fb19 100644 --- a/usr.bin/ssh/kexgexs.c +++ b/usr.bin/ssh/kexgexs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kexgexs.c,v 1.13 2010/02/26 20:29:54 djm Exp $ */ +/* $OpenBSD: kexgexs.c,v 1.14 2010/11/10 01:33:07 djm Exp $ */ /* * Copyright (c) 2000 Niels Provos. All rights reserved. * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -30,6 +30,8 @@ #include <string.h> #include <signal.h> +#include <openssl/dh.h> + #include "xmalloc.h" #include "buffer.h" #include "key.h" |