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/s3_srvr.c | |
parent | 0c91d12c143c2f5d42e30144bf144fd14fb1c431 (diff) |
Sort and group includes.
Diffstat (limited to 'lib/libssl/s3_srvr.c')
-rw-r--r-- | lib/libssl/s3_srvr.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/libssl/s3_srvr.c b/lib/libssl/s3_srvr.c index 3a311fbfb6b..a9f82b39d20 100644 --- a/lib/libssl/s3_srvr.c +++ b/lib/libssl/s3_srvr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_srvr.c,v 1.89 2014/10/31 15:25:55 jsing Exp $ */ +/* $OpenBSD: s3_srvr.c,v 1.90 2014/11/16 14:12:47 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -152,15 +152,17 @@ #define NETSCAPE_HANG_BUG #include <stdio.h> + #include "ssl_locl.h" + +#include <openssl/bn.h> #include <openssl/buffer.h> -#include <openssl/objects.h> #include <openssl/evp.h> -#include <openssl/hmac.h> -#include <openssl/x509.h> #include <openssl/dh.h> -#include <openssl/bn.h> +#include <openssl/hmac.h> #include <openssl/md5.h> +#include <openssl/objects.h> +#include <openssl/x509.h> static const SSL_METHOD *ssl3_get_server_method(int ver); |