aboutsummaryrefslogtreecommitdiffstats
path: root/engines/e_gmp.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-01-30 13:24:35 -0500
committerRich Salz <rsalz@openssl.org>2015-01-30 13:24:35 -0500
commitd6fbb194095312f4722c81c9362dbd0de66cb656 (patch)
tree51e11b1fbd8dbe99da11742d27ae02d435078866 /engines/e_gmp.c
parent6f1a93ad111c7dfe36a09a976c4c009079b19ea1 (diff)
downloadopenssl-d6fbb194095312f4722c81c9362dbd0de66cb656.tar.gz
Dead code removal #if 0 engines
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'engines/e_gmp.c')
-rw-r--r--engines/e_gmp.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/engines/e_gmp.c b/engines/e_gmp.c
index de5f9c0d3c..cf01016a17 100644
--- a/engines/e_gmp.c
+++ b/engines/e_gmp.c
@@ -117,12 +117,6 @@ static int e_gmp_rsa_finish(RSA *r);
/* The definitions for control commands specific to this engine */
/* #define E_GMP_CMD_SO_PATH ENGINE_CMD_BASE */
static const ENGINE_CMD_DEFN e_gmp_cmd_defns[] = {
-# if 0
- {E_GMP_CMD_SO_PATH,
- "SO_PATH",
- "Specifies the path to the 'e_gmp' shared library",
- ENGINE_CMD_FLAG_STRING},
-# endif
{0, NULL, NULL, 0}
};
@@ -247,10 +241,6 @@ static int e_gmp_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f) (void))
int to_return = 1;
switch (cmd) {
-# if 0
- case E_GMP_CMD_SO_PATH:
- /* ... */
-# endif
/* The command isn't understood by this engine */
default:
GMPerr(GMP_F_E_GMP_CTRL, GMP_R_CTRL_COMMAND_NOT_IMPLEMENTED);