summaryrefslogtreecommitdiffstats
path: root/providers/implementations/storemgmt/file_store.c
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2021-02-05 17:40:42 +0100
committerTomas Mraz <tomas@openssl.org>2021-02-11 09:34:31 +0100
commit2741128e9deeb7f6fd73f10a1c657c05433a41cb (patch)
treed8839a5c0f19b10c6cc16104d639168facee239b /providers/implementations/storemgmt/file_store.c
parentdc9ec65a018d92306e4b3139239505c5cfc5b15e (diff)
Move the PROV_R reason codes to a public header
The PROV_R codes can be returned to applications so it is useful to have some common set of provider reason codes for the applications or third party providers. Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14086)
Diffstat (limited to 'providers/implementations/storemgmt/file_store.c')
-rw-r--r--providers/implementations/storemgmt/file_store.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/providers/implementations/storemgmt/file_store.c b/providers/implementations/storemgmt/file_store.c
index 7f4dadbc28..a5edc53506 100644
--- a/providers/implementations/storemgmt/file_store.c
+++ b/providers/implementations/storemgmt/file_store.c
@@ -24,6 +24,7 @@
#include <openssl/params.h>
#include <openssl/decoder.h>
#include <openssl/store.h> /* The OSSL_STORE_INFO type numbers */
+#include <openssl/proverr.h>
#include "internal/cryptlib.h"
#include "internal/o_dir.h"
#include "crypto/pem.h" /* For PVK and "blob" PEM headers */
@@ -31,7 +32,6 @@
#include "prov/implementations.h"
#include "prov/bio.h"
#include "prov/provider_ctx.h"
-#include "prov/providercommonerr.h"
#include "file_store_local.h"
DEFINE_STACK_OF(OSSL_STORE_INFO)