diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-07-10 12:50:06 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-07-10 12:50:06 +0000 |
commit | 889db8476eb93ba8f1969d117b7c6a186b02ce61 (patch) | |
tree | 97fd311fba6ccc8021f9b526b598c1e14206b784 /sbin/iked/dh.c | |
parent | 1d5998645c2489cfc7c7f59c490b90688f98f9c1 (diff) |
add additional includes required to build with -DOPENSSL_NO_DEPRECATED
ok reyk@
Diffstat (limited to 'sbin/iked/dh.c')
-rw-r--r-- | sbin/iked/dh.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/iked/dh.c b/sbin/iked/dh.c index 1fe9a7fec46..862812c4aa7 100644 --- a/sbin/iked/dh.c +++ b/sbin/iked/dh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dh.c,v 1.11 2013/11/14 12:30:35 markus Exp $ */ +/* $OpenBSD: dh.c,v 1.12 2014/07/10 12:50:05 jsg Exp $ */ /* * Copyright (c) 2010-2013 Reyk Floeter <reyk@openbsd.org> @@ -23,6 +23,7 @@ #include <openssl/dh.h> #include <openssl/ec.h> #include <openssl/ecdh.h> +#include <openssl/bn.h> #include "dh.h" |