diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-11-16 14:12:48 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-11-16 14:12:48 +0000 |
commit | 19d77e69b7ab92bed5e96f9b8a92b30aac750e47 (patch) | |
tree | b3d70c3ef9296f1a9ab90aaa99e64ea79b8201fb /lib/libssl/t1_srvr.c | |
parent | 0c91d12c143c2f5d42e30144bf144fd14fb1c431 (diff) |
Sort and group includes.
Diffstat (limited to 'lib/libssl/t1_srvr.c')
-rw-r--r-- | lib/libssl/t1_srvr.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libssl/t1_srvr.c b/lib/libssl/t1_srvr.c index ba579dd110a..ab3fb7cdbf5 100644 --- a/lib/libssl/t1_srvr.c +++ b/lib/libssl/t1_srvr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: t1_srvr.c,v 1.15 2014/10/18 16:13:16 jsing Exp $ */ +/* $OpenBSD: t1_srvr.c,v 1.16 2014/11/16 14:12:47 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -57,10 +57,12 @@ */ #include <stdio.h> + #include "ssl_locl.h" + #include <openssl/buffer.h> -#include <openssl/objects.h> #include <openssl/evp.h> +#include <openssl/objects.h> #include <openssl/x509.h> static const SSL_METHOD *tls1_get_server_method(int ver); |