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/d1_both.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/d1_both.c')
-rw-r--r-- | src/lib/libssl/d1_both.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libssl/d1_both.c b/src/lib/libssl/d1_both.c index 22bd3cec2a..9b06d37947 100644 --- a/src/lib/libssl/d1_both.c +++ b/src/lib/libssl/d1_both.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: d1_both.c,v 1.71 2021/05/16 13:56:30 jsing Exp $ */ | 1 | /* $OpenBSD: d1_both.c,v 1.72 2021/05/16 14:10:43 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
@@ -117,8 +117,6 @@ | |||
117 | #include <stdio.h> | 117 | #include <stdio.h> |
118 | #include <string.h> | 118 | #include <string.h> |
119 | 119 | ||
120 | #include "ssl_locl.h" | ||
121 | |||
122 | #include <openssl/buffer.h> | 120 | #include <openssl/buffer.h> |
123 | #include <openssl/evp.h> | 121 | #include <openssl/evp.h> |
124 | #include <openssl/objects.h> | 122 | #include <openssl/objects.h> |
@@ -127,6 +125,7 @@ | |||
127 | #include "bytestring.h" | 125 | #include "bytestring.h" |
128 | #include "dtls_locl.h" | 126 | #include "dtls_locl.h" |
129 | #include "pqueue.h" | 127 | #include "pqueue.h" |
128 | #include "ssl_locl.h" | ||
130 | 129 | ||
131 | #define RSMBLY_BITMASK_SIZE(msg_len) (((msg_len) + 7) / 8) | 130 | #define RSMBLY_BITMASK_SIZE(msg_len) (((msg_len) + 7) / 8) |
132 | 131 | ||