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_transcript.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_transcript.c')
-rw-r--r-- | src/lib/libssl/ssl_transcript.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_transcript.c b/src/lib/libssl/ssl_transcript.c index 688f6dca43..47aa15adc2 100644 --- a/src/lib/libssl/ssl_transcript.c +++ b/src/lib/libssl/ssl_transcript.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_transcript.c,v 1.4 2021/05/02 16:00:33 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_transcript.c,v 1.5 2021/05/16 14:10:43 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2017 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2017 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -15,10 +15,10 @@ | |||
15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | */ | 16 | */ |
17 | 17 | ||
18 | #include "ssl_locl.h" | ||
19 | |||
20 | #include <openssl/ssl.h> | 18 | #include <openssl/ssl.h> |
21 | 19 | ||
20 | #include "ssl_locl.h" | ||
21 | |||
22 | int | 22 | int |
23 | tls1_transcript_hash_init(SSL *s) | 23 | tls1_transcript_hash_init(SSL *s) |
24 | { | 24 | { |