diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2021-05-16 14:10:44 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2021-05-16 14:10:44 +0000 |
commit | 3788c0946b92d2c4aa4948378ac43fa0a5eb7f5a (patch) | |
tree | 1491d11aef72e8df4be4683c51e354e950f6a5c3 /lib/libssl/ssl_pkt.c | |
parent | 5233be9a70ac292f3e0334a26891d82002f16a16 (diff) |
Make local header inclusion consistent.
Consistently include local headers in the same location, using the same
grouping/sorting across all files.
Diffstat (limited to 'lib/libssl/ssl_pkt.c')
-rw-r--r-- | lib/libssl/ssl_pkt.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libssl/ssl_pkt.c b/lib/libssl/ssl_pkt.c index ba59aa32371..ae47055079c 100644 --- a/lib/libssl/ssl_pkt.c +++ b/lib/libssl/ssl_pkt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_pkt.c,v 1.42 2021/05/02 17:46:58 jsing Exp $ */ +/* $OpenBSD: ssl_pkt.c,v 1.43 2021/05/16 14:10:43 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -112,12 +112,11 @@ #include <errno.h> #include <stdio.h> -#include "ssl_locl.h" - #include <openssl/buffer.h> #include <openssl/evp.h> #include "bytestring.h" +#include "ssl_locl.h" static int do_ssl3_write(SSL *s, int type, const unsigned char *buf, unsigned int len); |