diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2021-02-04 08:13:58 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2021-02-04 08:13:58 +0000 |
commit | a7137b4f5d461f4c078a5fda66af909cd7670098 (patch) | |
tree | 1975ba4293e35ff053a1c2138fbf2a7924836cd2 /usr.sbin | |
parent | 65a8c2cd587de6f7f4971418bbe2111cf3ef75e2 (diff) |
Cleanup openssl includes a bit. Use x509.h instead of x509v3.h, add asn1.h
and remove evp.h. First two suggested by tb@
Compiler agrees
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rpki-client/parser.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/rpki-client/parser.c b/usr.sbin/rpki-client/parser.c index b8c4dc5387f..ab64f9dd872 100644 --- a/usr.sbin/rpki-client/parser.c +++ b/usr.sbin/rpki-client/parser.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parser.c,v 1.1 2021/02/04 08:10:25 claudio Exp $ */ +/* $OpenBSD: parser.c,v 1.2 2021/02/04 08:13:57 claudio Exp $ */ /* * Copyright (c) 2019 Claudio Jeker <claudio@openbsd.org> * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> @@ -30,9 +30,9 @@ #include <unistd.h> #include <imsg.h> +#include <openssl/asn1.h> #include <openssl/err.h> -#include <openssl/evp.h> -#include <openssl/x509v3.h> +#include <openssl/x509.h> #include "extern.h" |