diff options
author | Rich Salz <rsalz@openssl.org> | 2015-01-30 18:46:49 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-01-30 18:46:49 +0100 |
commit | 6f1a93ad111c7dfe36a09a976c4c009079b19ea1 (patch) | |
tree | db4a17ad2c86410d1caac79780892a6ff3786b26 /crypto/dso/dso_dlfcn.c | |
parent | modes/gcm128.c: harmonize ctx->ghash assignment, shortcut *_ctr32 (diff) | |
download | openssl-6f1a93ad111c7dfe36a09a976c4c009079b19ea1.tar.xz openssl-6f1a93ad111c7dfe36a09a976c4c009079b19ea1.zip |
Dead code removal: #if 0 conf, dso, pqueue, threads
Mostly, but not completely, debugging print statements.
Some old logic kept for internal documentation reasons, perhaps.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/dso/dso_dlfcn.c')
-rw-r--r-- | crypto/dso/dso_dlfcn.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/crypto/dso/dso_dlfcn.c b/crypto/dso/dso_dlfcn.c index ec87f475f8..c9a9a8bbb0 100644 --- a/crypto/dso/dso_dlfcn.c +++ b/crypto/dso/dso_dlfcn.c @@ -99,12 +99,6 @@ static int dlfcn_load(DSO *dso); static int dlfcn_unload(DSO *dso); static void *dlfcn_bind_var(DSO *dso, const char *symname); static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname); -# if 0 -static int dlfcn_unbind(DSO *dso, char *symname, void *symptr); -static int dlfcn_init(DSO *dso); -static int dlfcn_finish(DSO *dso); -static long dlfcn_ctrl(DSO *dso, int cmd, long larg, void *parg); -# endif static char *dlfcn_name_converter(DSO *dso, const char *filename); static char *dlfcn_merger(DSO *dso, const char *filespec1, const char *filespec2); @@ -117,11 +111,6 @@ static DSO_METHOD dso_meth_dlfcn = { dlfcn_unload, dlfcn_bind_var, dlfcn_bind_func, -/* For now, "unbind" doesn't exist */ -# if 0 - NULL, /* unbind_var */ - NULL, /* unbind_func */ -# endif NULL, /* ctrl */ dlfcn_name_converter, dlfcn_merger, |