diff options
Diffstat (limited to 'lib/libssl/d1_clnt.c')
-rw-r--r-- | lib/libssl/d1_clnt.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/libssl/d1_clnt.c b/lib/libssl/d1_clnt.c index 4b71f01a6ca..7f6e232128a 100644 --- a/lib/libssl/d1_clnt.c +++ b/lib/libssl/d1_clnt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: d1_clnt.c,v 1.36 2014/10/18 16:13:16 jsing Exp $ */ +/* $OpenBSD: d1_clnt.c,v 1.37 2014/11/16 14:12:47 jsing Exp $ */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. @@ -114,13 +114,15 @@ */ #include <stdio.h> + #include "ssl_locl.h" + +#include <openssl/bn.h> #include <openssl/buffer.h> -#include <openssl/objects.h> +#include <openssl/dh.h> #include <openssl/evp.h> #include <openssl/md5.h> -#include <openssl/bn.h> -#include <openssl/dh.h> +#include <openssl/objects.h> static const SSL_METHOD *dtls1_get_client_method(int ver); static int dtls1_get_hello_verify(SSL *s); |