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_pkt.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_pkt.c')
-rw-r--r-- | src/lib/libssl/ssl_pkt.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_pkt.c b/src/lib/libssl/ssl_pkt.c index ba59aa3237..ae47055079 100644 --- a/src/lib/libssl/ssl_pkt.c +++ b/src/lib/libssl/ssl_pkt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_pkt.c,v 1.42 2021/05/02 17:46:58 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_pkt.c,v 1.43 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 | * |
@@ -112,12 +112,11 @@ | |||
112 | #include <errno.h> | 112 | #include <errno.h> |
113 | #include <stdio.h> | 113 | #include <stdio.h> |
114 | 114 | ||
115 | #include "ssl_locl.h" | ||
116 | |||
117 | #include <openssl/buffer.h> | 115 | #include <openssl/buffer.h> |
118 | #include <openssl/evp.h> | 116 | #include <openssl/evp.h> |
119 | 117 | ||
120 | #include "bytestring.h" | 118 | #include "bytestring.h" |
119 | #include "ssl_locl.h" | ||
121 | 120 | ||
122 | static int do_ssl3_write(SSL *s, int type, const unsigned char *buf, | 121 | static int do_ssl3_write(SSL *s, int type, const unsigned char *buf, |
123 | unsigned int len); | 122 | unsigned int len); |