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/tls13_buffer.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/tls13_buffer.c')
-rw-r--r-- | src/lib/libssl/tls13_buffer.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libssl/tls13_buffer.c b/src/lib/libssl/tls13_buffer.c index bc10abded2..49f2f1e21b 100644 --- a/src/lib/libssl/tls13_buffer.c +++ b/src/lib/libssl/tls13_buffer.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls13_buffer.c,v 1.3 2020/03/10 17:11:25 jsing Exp $ */ | 1 | /* $OpenBSD: tls13_buffer.c,v 1.4 2021/05/16 14:10:43 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -15,9 +15,8 @@ | |||
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 "bytestring.h" | 18 | #include "bytestring.h" |
19 | #include "ssl_locl.h" | ||
21 | #include "tls13_internal.h" | 20 | #include "tls13_internal.h" |
22 | 21 | ||
23 | struct tls13_buffer { | 22 | struct tls13_buffer { |