aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/engine/eng_err.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-06-01 12:43:39 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-06-01 12:43:39 +0000
commite0c1ea9038f6a9e33dff3c7654b2a1b97e3d0e2c (patch)
treee32d0ae5ab5b122a3ef0b527e41215d1efe731c1 /crypto/engine/eng_err.c
parent6f88c6a634868a97d9613d6ec3663bf83a05d379 (diff)
downloadopenssl-e0c1ea9038f6a9e33dff3c7654b2a1b97e3d0e2c.tar.gz
Fix error code. make update
Diffstat (limited to 'crypto/engine/eng_err.c')
-rw-r--r--crypto/engine/eng_err.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/engine/eng_err.c b/crypto/engine/eng_err.c
index 62db507ce2..8de1a4fb09 100644
--- a/crypto/engine/eng_err.c
+++ b/crypto/engine/eng_err.c
@@ -86,6 +86,7 @@ static ERR_STRING_DATA ENGINE_str_functs[]=
{ERR_FUNC(ENGINE_F_ENGINE_GET_DEFAULT_TYPE), "ENGINE_GET_DEFAULT_TYPE"},
{ERR_FUNC(ENGINE_F_ENGINE_GET_DIGEST), "ENGINE_get_digest"},
{ERR_FUNC(ENGINE_F_ENGINE_GET_NEXT), "ENGINE_get_next"},
+{ERR_FUNC(ENGINE_F_ENGINE_GET_PKEY_METH), "ENGINE_get_pkey_meth"},
{ERR_FUNC(ENGINE_F_ENGINE_GET_PREV), "ENGINE_get_prev"},
{ERR_FUNC(ENGINE_F_ENGINE_INIT), "ENGINE_init"},
{ERR_FUNC(ENGINE_F_ENGINE_LIST_ADD), "ENGINE_LIST_ADD"},
@@ -149,6 +150,7 @@ static ERR_STRING_DATA ENGINE_str_reasons[]=
{ERR_REASON(ENGINE_R_RSA_NOT_IMPLEMENTED),"rsa not implemented"},
{ERR_REASON(ENGINE_R_UNIMPLEMENTED_CIPHER),"unimplemented cipher"},
{ERR_REASON(ENGINE_R_UNIMPLEMENTED_DIGEST),"unimplemented digest"},
+{ERR_REASON(ENGINE_R_UNIMPLEMENTED_PUBLIC_KEY_METHOD),"unimplemented public key method"},
{ERR_REASON(ENGINE_R_VERSION_INCOMPATIBILITY),"version incompatibility"},
{0,NULL}
};