summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl_lib.c
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2014-11-16 14:12:47 +0000
committerjsing <jsing@openbsd.org>2014-11-16 14:12:47 +0000
commitc5899dbc0835d775bcf3af5d6a5964852c8faf9b (patch)
treecc7caf039035292a6c77ef21bb67c60855d8e4c9 /lib/libssl/ssl_lib.c
parentReplace a plethora of historical protection options with just (diff)
downloadwireguard-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.c11
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