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_asn1.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_asn1.c')
-rw-r--r-- | src/lib/libssl/ssl_asn1.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_asn1.c b/src/lib/libssl/ssl_asn1.c index cea2b31f47..6ff7ca5476 100644 --- a/src/lib/libssl/ssl_asn1.c +++ b/src/lib/libssl/ssl_asn1.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_asn1.c,v 1.58 2021/03/29 18:24:04 tb Exp $ */ | 1 | /* $OpenBSD: ssl_asn1.c,v 1.59 2021/05/16 14:10:43 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2016 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2016 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -20,9 +20,8 @@ | |||
20 | #include <openssl/ssl.h> | 20 | #include <openssl/ssl.h> |
21 | #include <openssl/x509.h> | 21 | #include <openssl/x509.h> |
22 | 22 | ||
23 | #include "ssl_locl.h" | ||
24 | |||
25 | #include "bytestring.h" | 23 | #include "bytestring.h" |
24 | #include "ssl_locl.h" | ||
26 | 25 | ||
27 | #define SSLASN1_TAG (CBS_ASN1_CONSTRUCTED | CBS_ASN1_CONTEXT_SPECIFIC) | 26 | #define SSLASN1_TAG (CBS_ASN1_CONSTRUCTED | CBS_ASN1_CONTEXT_SPECIFIC) |
28 | #define SSLASN1_TIME_TAG (SSLASN1_TAG | 1) | 27 | #define SSLASN1_TIME_TAG (SSLASN1_TAG | 1) |