aboutsummaryrefslogtreecommitdiff
path: root/crypto/engine
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-05-19 23:03:43 +0000
committerRichard Levitte <levitte@openssl.org>2003-05-19 23:03:43 +0000
commit0239876511cccc827a1f662b5b4fdfc5d1864996 (patch)
treeff81fdb8ca605914197c9bbcc3d34f88c412b5fa /crypto/engine
parent93c929e411e40bc8224e1a97a1656694940b1d64 (diff)
downloadopenssl-0239876511cccc827a1f662b5b4fdfc5d1864996.zip
openssl-0239876511cccc827a1f662b5b4fdfc5d1864996.tar.gz
openssl-0239876511cccc827a1f662b5b4fdfc5d1864996.tar.bz2
Remove certain functions
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/tb_store.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/engine/tb_store.c b/crypto/engine/tb_store.c
index 1466d85..6cc6d75 100644
--- a/crypto/engine/tb_store.c
+++ b/crypto/engine/tb_store.c
@@ -90,6 +90,8 @@ void ENGINE_register_all_STORE()
ENGINE_register_STORE(e);
}
+/* The following two functions are removed because they're useless. */
+#if 0
int ENGINE_set_default_STORE(ENGINE *e)
{
if(e->store_meth)
@@ -97,7 +99,9 @@ int ENGINE_set_default_STORE(ENGINE *e)
engine_unregister_all_STORE, e, &dummy_nid, 1, 1);
return 1;
}
+#endif
+#if 0
/* Exposed API function to get a functional reference from the implementation
* table (ie. try to get a functional reference from the tabled structural
* references). */
@@ -105,6 +109,7 @@ ENGINE *ENGINE_get_default_STORE(void)
{
return engine_table_select(&store_table, dummy_nid);
}
+#endif
/* Obtains an STORE implementation from an ENGINE functional reference */
const STORE_METHOD *ENGINE_get_STORE(const ENGINE *e)