summaryrefslogtreecommitdiffstats
path: root/lib/libssl/bio_ssl.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/bio_ssl.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/bio_ssl.c')
-rw-r--r--lib/libssl/bio_ssl.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libssl/bio_ssl.c b/lib/libssl/bio_ssl.c
index 4d28d1821d2..cfaf78a4ddd 100644
--- a/lib/libssl/bio_ssl.c
+++ b/lib/libssl/bio_ssl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bio_ssl.c,v 1.20 2014/06/12 15:49:31 deraadt Exp $ */
+/* $OpenBSD: bio_ssl.c,v 1.21 2014/11/16 14:12:47 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -56,12 +56,13 @@
* [including the GNU Public Licence.]
*/
+#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <errno.h>
-#include <openssl/crypto.h>
+
#include <openssl/bio.h>
+#include <openssl/crypto.h>
#include <openssl/err.h>
#include <openssl/ssl.h>