aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/engine/eng_err.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2002-10-16 01:29:37 +0000
committerGeoff Thorpe <geoff@openssl.org>2002-10-16 01:29:37 +0000
commit314c667050065bac7d1b0b1a767af6ff9585a596 (patch)
tree7b2793ea595b2c7b97eecb61fbf3fb3e40102acd /crypto/engine/eng_err.c
parent28c8a911bdb726fbfae14c7d5ed62d6bac5c1f09 (diff)
downloadopenssl-314c667050065bac7d1b0b1a767af6ff9585a596.tar.gz
- Remo Inverardi noticed that ENGINEs don't have an "up_ref" function in the
normal 'structural' case (ENGINE_init() satisfies this in the less normal 'functional' case). This change provides such a function. - Correct some "read" locks that should actually be "write" locks. - make update.
Diffstat (limited to 'crypto/engine/eng_err.c')
-rw-r--r--crypto/engine/eng_err.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/engine/eng_err.c b/crypto/engine/eng_err.c
index f6c5630395..814d95ee32 100644
--- a/crypto/engine/eng_err.c
+++ b/crypto/engine/eng_err.c
@@ -1,6 +1,6 @@
/* crypto/engine/eng_err.c */
/* ====================================================================
- * Copyright (c) 1999 The OpenSSL Project. All rights reserved.
+ * Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -96,6 +96,7 @@ static ERR_STRING_DATA ENGINE_str_functs[]=
{ERR_PACK(0,ENGINE_F_ENGINE_SET_NAME,0), "ENGINE_set_name"},
{ERR_PACK(0,ENGINE_F_ENGINE_TABLE_REGISTER,0), "ENGINE_TABLE_REGISTER"},
{ERR_PACK(0,ENGINE_F_ENGINE_UNLOAD_KEY,0), "ENGINE_UNLOAD_KEY"},
+{ERR_PACK(0,ENGINE_F_ENGINE_UP_REF,0), "ENGINE_up_ref"},
{ERR_PACK(0,ENGINE_F_INT_CTRL_HELPER,0), "INT_CTRL_HELPER"},
{ERR_PACK(0,ENGINE_F_INT_ENGINE_CONFIGURE,0), "INT_ENGINE_CONFIGURE"},
{ERR_PACK(0,ENGINE_F_LOG_MESSAGE,0), "LOG_MESSAGE"},