diff options
author | tb <> | 2025-05-10 11:51:01 +0000 |
---|---|---|
committer | tb <> | 2025-05-10 11:51:01 +0000 |
commit | c4f52d97f899ca9b2eb3e928a0efd05484fbd673 (patch) | |
tree | 456520ac784c3c87b9886a7b5c17ed21fcb67000 /src | |
parent | 70a917c5b28f949b07aa5d1253d842acac6077f3 (diff) | |
download | openbsd-c4f52d97f899ca9b2eb3e928a0efd05484fbd673.tar.gz openbsd-c4f52d97f899ca9b2eb3e928a0efd05484fbd673.tar.bz2 openbsd-c4f52d97f899ca9b2eb3e928a0efd05484fbd673.zip |
asn_moid: move inclusion of err_local.h to the proper place
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/asn1/asn_moid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/asn1/asn_moid.c b/src/lib/libcrypto/asn1/asn_moid.c index e75a63969f..a9a752cc38 100644 --- a/src/lib/libcrypto/asn1/asn_moid.c +++ b/src/lib/libcrypto/asn1/asn_moid.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: asn_moid.c,v 1.19 2025/05/10 05:54:38 tb Exp $ */ | 1 | /* $OpenBSD: asn_moid.c,v 1.20 2025/05/10 11:51:01 tb Exp $ */ |
2 | /* Written by Stephen Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Stephen Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2001. | 3 | * project 2001. |
4 | */ | 4 | */ |
@@ -65,8 +65,8 @@ | |||
65 | #include <openssl/x509.h> | 65 | #include <openssl/x509.h> |
66 | 66 | ||
67 | #include "asn1_local.h" | 67 | #include "asn1_local.h" |
68 | #include "err_local.h" | ||
69 | #include "conf_local.h" | 68 | #include "conf_local.h" |
69 | #include "err_local.h" | ||
70 | 70 | ||
71 | /* Simple ASN1 OID module: add all objects in a given section */ | 71 | /* Simple ASN1 OID module: add all objects in a given section */ |
72 | 72 | ||