diff options
author | tb <> | 2025-01-26 21:05:19 +0000 |
---|---|---|
committer | tb <> | 2025-01-26 21:05:19 +0000 |
commit | bbe39a0540dc94326e91644accfa084242bb9f8a (patch) | |
tree | 8ef565c6d13313f5aca47cba64029e21ecefc8df | |
parent | df05327f43597e9bb318d8a2b4f5ba4653e79b1c (diff) | |
download | openbsd-bbe39a0540dc94326e91644accfa084242bb9f8a.tar.gz openbsd-bbe39a0540dc94326e91644accfa084242bb9f8a.tar.bz2 openbsd-bbe39a0540dc94326e91644accfa084242bb9f8a.zip |
x509_obj.c: fix includes
-rw-r--r-- | src/lib/libcrypto/x509/x509_obj.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lib/libcrypto/x509/x509_obj.c b/src/lib/libcrypto/x509/x509_obj.c index 25cca54bdb..1fcc53e5f0 100644 --- a/src/lib/libcrypto/x509/x509_obj.c +++ b/src/lib/libcrypto/x509/x509_obj.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_obj.c,v 1.23 2025/01/26 20:01:58 tb Exp $ */ | 1 | /* $OpenBSD: x509_obj.c,v 1.24 2025/01/26 21:05:19 tb 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 | * |
@@ -57,14 +57,15 @@ | |||
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include <stdio.h> | 59 | #include <stdio.h> |
60 | #include <stdint.h> | ||
61 | #include <stdlib.h> | ||
60 | #include <string.h> | 62 | #include <string.h> |
61 | 63 | ||
62 | #include <openssl/buffer.h> | 64 | #include <openssl/asn1.h> |
63 | #include <openssl/err.h> | ||
64 | #include <openssl/lhash.h> | ||
65 | #include <openssl/objects.h> | 65 | #include <openssl/objects.h> |
66 | #include <openssl/x509.h> | 66 | #include <openssl/x509.h> |
67 | 67 | ||
68 | #include "bytestring.h" | ||
68 | #include "x509_local.h" | 69 | #include "x509_local.h" |
69 | 70 | ||
70 | static int | 71 | static int |