diff options
author | jsing <> | 2014-11-16 14:12:47 +0000 |
---|---|---|
committer | jsing <> | 2014-11-16 14:12:47 +0000 |
commit | d6b346577efe94c30d6ba08ca7f8feae71688a3c (patch) | |
tree | 04d418c3104bff49ee7d27e26e24c2cb5fd85474 /src/lib/libssl/ssl_lib.c | |
parent | 00ff8dba92ed1b03a8b2b502f1c8509ee150189d (diff) | |
download | openbsd-d6b346577efe94c30d6ba08ca7f8feae71688a3c.tar.gz openbsd-d6b346577efe94c30d6ba08ca7f8feae71688a3c.tar.bz2 openbsd-d6b346577efe94c30d6ba08ca7f8feae71688a3c.zip |
Sort and group includes.
Diffstat (limited to 'src/lib/libssl/ssl_lib.c')
-rw-r--r-- | src/lib/libssl/ssl_lib.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/lib/libssl/ssl_lib.c b/src/lib/libssl/ssl_lib.c index 078a710c33..bdd47ff87f 100644 --- a/src/lib/libssl/ssl_lib.c +++ b/src/lib/libssl/ssl_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_lib.c,v 1.89 2014/10/31 15:25:55 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_lib.c,v 1.90 2014/11/16 14:12:47 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -141,12 +141,15 @@ | |||
141 | */ | 141 | */ |
142 | 142 | ||
143 | #include <stdio.h> | 143 | #include <stdio.h> |
144 | |||
144 | #include "ssl_locl.h" | 145 | #include "ssl_locl.h" |
145 | #include <openssl/objects.h> | 146 | |
147 | #include <openssl/dh.h> | ||
146 | #include <openssl/lhash.h> | 148 | #include <openssl/lhash.h> |
147 | #include <openssl/x509v3.h> | 149 | #include <openssl/objects.h> |
148 | #include <openssl/ocsp.h> | 150 | #include <openssl/ocsp.h> |
149 | #include <openssl/dh.h> | 151 | #include <openssl/x509v3.h> |
152 | |||
150 | #ifndef OPENSSL_NO_ENGINE | 153 | #ifndef OPENSSL_NO_ENGINE |
151 | #include <openssl/engine.h> | 154 | #include <openssl/engine.h> |
152 | #endif | 155 | #endif |