diff options
author | jsing <> | 2021-05-16 14:10:43 +0000 |
---|---|---|
committer | jsing <> | 2021-05-16 14:10:43 +0000 |
commit | f90f5cc9a7987768e1cd09f4fc110caf5512afff (patch) | |
tree | 8bdf19b574c605a50b142d3dbfbfb0ab0d7c8530 /src/lib/libssl/ssl_lib.c | |
parent | 6eb9f4e8d442a1181957027a462b0fd7230baeba (diff) | |
download | openbsd-f90f5cc9a7987768e1cd09f4fc110caf5512afff.tar.gz openbsd-f90f5cc9a7987768e1cd09f4fc110caf5512afff.tar.bz2 openbsd-f90f5cc9a7987768e1cd09f4fc110caf5512afff.zip |
Make local header inclusion consistent.
Consistently include local headers in the same location, using the same
grouping/sorting across all files.
Diffstat (limited to 'src/lib/libssl/ssl_lib.c')
-rw-r--r-- | src/lib/libssl/ssl_lib.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_lib.c b/src/lib/libssl/ssl_lib.c index c6c499eb02..4fa011ebc5 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.258 2021/05/16 13:56:31 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_lib.c,v 1.259 2021/05/16 14:10:43 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 | * |
@@ -146,8 +146,6 @@ | |||
146 | 146 | ||
147 | #include <stdio.h> | 147 | #include <stdio.h> |
148 | 148 | ||
149 | #include "ssl_locl.h" | ||
150 | |||
151 | #include <openssl/bn.h> | 149 | #include <openssl/bn.h> |
152 | #include <openssl/dh.h> | 150 | #include <openssl/dh.h> |
153 | #include <openssl/lhash.h> | 151 | #include <openssl/lhash.h> |
@@ -162,6 +160,7 @@ | |||
162 | 160 | ||
163 | #include "bytestring.h" | 161 | #include "bytestring.h" |
164 | #include "dtls_locl.h" | 162 | #include "dtls_locl.h" |
163 | #include "ssl_locl.h" | ||
165 | #include "ssl_sigalgs.h" | 164 | #include "ssl_sigalgs.h" |
166 | 165 | ||
167 | const char *SSL_version_str = OPENSSL_VERSION_TEXT; | 166 | const char *SSL_version_str = OPENSSL_VERSION_TEXT; |