aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/err
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-03-29 00:19:55 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-03-29 00:19:55 +0000
commit67d5ac039f2ceb9a260a6aaf96707c1fc90640d3 (patch)
tree6bff2c20148aecfe6eb6933915867b6ca45f4d22 /crypto/err
parent8d8c7266d4de9887fb0190a0770df9dc254a16a3 (diff)
downloadopenssl-67d5ac039f2ceb9a260a6aaf96707c1fc90640d3.tar.gz
Various PKCS#12 related tidies and fixes: it might even compile now :-)
Diffstat (limited to 'crypto/err')
-rw-r--r--crypto/err/err.c2
-rw-r--r--crypto/err/err.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/crypto/err/err.c b/crypto/err/err.c
index fcd92284e0..ef47252736 100644
--- a/crypto/err/err.c
+++ b/crypto/err/err.c
@@ -109,6 +109,7 @@ static ERR_STRING_DATA ERR_str_libraries[]=
{ERR_PACK(ERR_LIB_BIO,0,0) ,"BIO routines"},
{ERR_PACK(ERR_LIB_PKCS7,0,0) ,"PKCS7 routines"},
{ERR_PACK(ERR_LIB_X509V3,0,0) ,"X509 V3 routines"},
+{ERR_PACK(ERR_LIB_PKCS12,0,0) ,"PKCS12 routines"},
{0,NULL},
};
@@ -148,6 +149,7 @@ static ERR_STRING_DATA ERR_str_reasons[]=
{ERR_R_PROXY_LIB ,"PROXY lib"},
{ERR_R_BIO_LIB ,"BIO lib"},
{ERR_R_PKCS7_LIB ,"PKCS7 lib"},
+{ERR_R_PKCS12_LIB ,"PKCS12 lib"},
{ERR_R_MALLOC_FAILURE ,"Malloc failure"},
{ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED ,"called a fuction you should not call"},
{ERR_R_PASSED_NULL_PARAMETER ,"passed a null parameter"},
diff --git a/crypto/err/err.h b/crypto/err/err.h
index c10868ac7f..f06ed383e8 100644
--- a/crypto/err/err.h
+++ b/crypto/err/err.h
@@ -191,6 +191,7 @@ typedef struct err_state_st
#define ERR_R_PROXY_LIB ERR_LIB_PROXY
#define ERR_R_BIO_LIB ERR_LIB_BIO
#define ERR_R_PKCS7_LIB ERR_LIB_PKCS7
+#define ERR_R_PKCS12_LIB ERR_LIB_PKCS12
/* fatal error */
#define ERR_R_MALLOC_FAILURE (1|ERR_R_FATAL)