summaryrefslogtreecommitdiffstats
path: root/crypto/engine/eng_list.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-05-01 03:57:46 +0000
committerRichard Levitte <levitte@openssl.org>2003-05-01 03:57:46 +0000
commit3bbb0212f3d059d7148c62c73d719e6d79954901 (patch)
tree4d17c4090494af437408524c6d8d6218e61adfe0 /crypto/engine/eng_list.c
parenta5db6fa5760f21d16d59e025e930c02456e00fef (diff)
Add STORE support in ENGINE.
Diffstat (limited to 'crypto/engine/eng_list.c')
-rw-r--r--crypto/engine/eng_list.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/engine/eng_list.c b/crypto/engine/eng_list.c
index 55b646da24..f94d593b06 100644
--- a/crypto/engine/eng_list.c
+++ b/crypto/engine/eng_list.c
@@ -336,6 +336,7 @@ static void engine_cpy(ENGINE *dest, const ENGINE *src)
dest->ecdsa_meth = src->ecdsa_meth;
#endif
dest->rand_meth = src->rand_meth;
+ dest->store_meth = src->store_meth;
dest->ciphers = src->ciphers;
dest->digests = src->digests;
dest->destroy = src->destroy;