From: claudio Date: Thu, 4 Feb 2021 08:13:57 +0000 (+0000) Subject: Cleanup openssl includes a bit. Use x509.h instead of x509v3.h, add asn1.h X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=c631bb87a085bd831116e942a0be6781b47e8268;p=openbsd 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 --- 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 * Copyright (c) 2019 Kristaps Dzonsons @@ -30,9 +30,9 @@ #include #include +#include #include -#include -#include +#include #include "extern.h"