010cc6087f
- Certificate format validation when adding the SCEP server's CA (#1492112) - Replace some SHA1 usages with SHA256 in the unit tests needed becaus of OpenSSL 3 update Resolves: #1492112
32 lines
820 B
Diff
32 lines
820 B
Diff
From 657c9ab79a00a2003f7c02c535418896cacc410a Mon Sep 17 00:00:00 2001
|
|
From: Rob Crittenden <rcritten@redhat.com>
|
|
Date: Mon, 15 Nov 2021 09:58:40 -0500
|
|
Subject: [PATCH] =?UTF-8?q?Fix=20implicit=20declaration=20of=20function=20?=
|
|
=?UTF-8?q?=E2=80=98PEM=5Fread=5Fbio=5FX509=E2=80=99?=
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Add an include for openssl/pem.h
|
|
|
|
Signed-off-by: Rob Crittenden <rcritten@redhat.com>
|
|
---
|
|
src/submit-n.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/submit-n.c b/src/submit-n.c
|
|
index 3dcb820a..4f763a16 100644
|
|
--- a/src/submit-n.c
|
|
+++ b/src/submit-n.c
|
|
@@ -33,6 +33,7 @@
|
|
#include <openssl/pkcs7.h>
|
|
#include <openssl/stack.h>
|
|
#include <openssl/x509.h>
|
|
+#include <openssl/pem.h>
|
|
|
|
#include <cert.h>
|
|
#include <certdb.h>
|
|
--
|
|
2.31.1
|
|
|