summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_clnt.c
diff options
context:
space:
mode:
authorjsing <>2021-05-16 14:10:43 +0000
committerjsing <>2021-05-16 14:10:43 +0000
commitf90f5cc9a7987768e1cd09f4fc110caf5512afff (patch)
tree8bdf19b574c605a50b142d3dbfbfb0ab0d7c8530 /src/lib/libssl/ssl_clnt.c
parent6eb9f4e8d442a1181957027a462b0fd7230baeba (diff)
downloadopenbsd-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_clnt.c')
-rw-r--r--src/lib/libssl/ssl_clnt.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_clnt.c b/src/lib/libssl/ssl_clnt.c
index abfe5c7d60..be9d6878d7 100644
--- a/src/lib/libssl/ssl_clnt.c
+++ b/src/lib/libssl/ssl_clnt.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_clnt.c,v 1.98 2021/05/16 13:56:30 jsing Exp $ */ 1/* $OpenBSD: ssl_clnt.c,v 1.99 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 *
@@ -152,8 +152,6 @@
152#include <stdint.h> 152#include <stdint.h>
153#include <stdio.h> 153#include <stdio.h>
154 154
155#include "ssl_locl.h"
156
157#include <openssl/bn.h> 155#include <openssl/bn.h>
158#include <openssl/buffer.h> 156#include <openssl/buffer.h>
159#include <openssl/curve25519.h> 157#include <openssl/curve25519.h>
@@ -172,6 +170,7 @@
172 170
173#include "bytestring.h" 171#include "bytestring.h"
174#include "dtls_locl.h" 172#include "dtls_locl.h"
173#include "ssl_locl.h"
175#include "ssl_sigalgs.h" 174#include "ssl_sigalgs.h"
176#include "ssl_tlsext.h" 175#include "ssl_tlsext.h"
177 176