From c631bb87a085bd831116e942a0be6781b47e8268 Mon Sep 17 00:00:00 2001 From: claudio Date: Thu, 4 Feb 2021 08:13:57 +0000 Subject: [PATCH] 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 --- usr.sbin/rpki-client/parser.c | 6 +++--- 1 file 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 * Copyright (c) 2019 Kristaps Dzonsons @@ -30,9 +30,9 @@ #include #include +#include #include -#include -#include +#include #include "extern.h" -- 2.20.1