diff options
author | 2014-11-16 14:12:47 +0000 | |
---|---|---|
committer | 2014-11-16 14:12:47 +0000 | |
commit | c5899dbc0835d775bcf3af5d6a5964852c8faf9b (patch) | |
tree | cc7caf039035292a6c77ef21bb67c60855d8e4c9 /lib/libssl/ssl_lib.c | |
parent | Replace a plethora of historical protection options with just (diff) | |
download | wireguard-openbsd-c5899dbc0835d775bcf3af5d6a5964852c8faf9b.tar.xz wireguard-openbsd-c5899dbc0835d775bcf3af5d6a5964852c8faf9b.zip |
Sort and group includes.
Diffstat (limited to 'lib/libssl/ssl_lib.c')
-rw-r--r-- | lib/libssl/ssl_lib.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/libssl/ssl_lib.c b/lib/libssl/ssl_lib.c index 078a710c330..bdd47ff87f6 100644 --- a/lib/libssl/ssl_lib.c +++ b/lib/libssl/ssl_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_lib.c,v 1.89 2014/10/31 15:25:55 jsing Exp $ */ +/* $OpenBSD: ssl_lib.c,v 1.90 2014/11/16 14:12:47 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -141,12 +141,15 @@ */ #include <stdio.h> + #include "ssl_locl.h" -#include <openssl/objects.h> + +#include <openssl/dh.h> #include <openssl/lhash.h> -#include <openssl/x509v3.h> +#include <openssl/objects.h> #include <openssl/ocsp.h> -#include <openssl/dh.h> +#include <openssl/x509v3.h> + #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> #endif |