summaryrefslogtreecommitdiffstats
path: root/crypto/dso/dso_vms.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2016-03-22 14:33:00 -0400
committerRich Salz <rsalz@openssl.org>2016-03-23 08:34:33 -0400
commit3d8b2ec42bcb1cfe2f6f502ea8c6f098202a2906 (patch)
treec6b33600fafbb424e4ccbeb0e93f8dc620521d00 /crypto/dso/dso_vms.c
parentde7058241083e9ec80c4ad27e7bb4f2bd79e36f2 (diff)
Remove several unused undocumented functions.
Removed the following: DSO_bind_var, DSO_bind_var, DSO_get_default_method, DSO_get_loaded_filename, DSO_get_loaded_filename, DSO_get_method, DSO_new_method, DSO_pathbyaddr, DSO_set_default_method, DSO_set_method, DSO_set_name_converter, DSO_set_name_converter Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/dso/dso_vms.c')
-rw-r--r--crypto/dso/dso_vms.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/crypto/dso/dso_vms.c b/crypto/dso/dso_vms.c
index 79e9963a26..5b8dc9198d 100644
--- a/crypto/dso/dso_vms.c
+++ b/crypto/dso/dso_vms.c
@@ -84,7 +84,6 @@ void *_malloc32(__size_t);
static int vms_load(DSO *dso);
static int vms_unload(DSO *dso);
-static void *vms_bind_var(DSO *dso, const char *symname);
static DSO_FUNC_TYPE vms_bind_func(DSO *dso, const char *symname);
static char *vms_name_converter(DSO *dso, const char *filename);
static char *vms_merger(DSO *dso, const char *filespec1,
@@ -94,7 +93,6 @@ static DSO_METHOD dso_meth_vms = {
"OpenSSL 'VMS' shared library method",
vms_load,
NULL, /* unload */
- vms_bind_var,
vms_bind_func,
NULL, /* ctrl */
vms_name_converter,
@@ -404,13 +402,6 @@ void vms_bind_sym(DSO *dso, const char *symname, void **sym)
return;
}
-static void *vms_bind_var(DSO *dso, const char *symname)
-{
- void *sym = 0;
- vms_bind_sym(dso, symname, &sym);
- return sym;
-}
-
static DSO_FUNC_TYPE vms_bind_func(DSO *dso, const char *symname)
{
DSO_FUNC_TYPE sym = 0;