diff options
author | Geoff Thorpe <geoff@openssl.org> | 2001-11-22 10:08:49 +0000 |
---|---|---|
committer | Geoff Thorpe <geoff@openssl.org> | 2001-11-22 10:08:49 +0000 |
commit | c507a16e49a789588e2b7e93e1fa9adf3ba16410 (patch) | |
tree | f15b660f1b4b9aa5abae35715c8a9233d731ffc0 /crypto/engine/eng_dyn.c | |
parent | 308f028e281dd6c7e5b16eea42e07b8e3d58f7ae (diff) | |
download | openssl-new-c507a16e49a789588e2b7e93e1fa9adf3ba16410.tar.gz |
Cut "ENGINE_ID" to the more concise "ID".
Diffstat (limited to 'crypto/engine/eng_dyn.c')
-rw-r--r-- | crypto/engine/eng_dyn.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/engine/eng_dyn.c b/crypto/engine/eng_dyn.c index 9eda5a7c89..4fefcc0cae 100644 --- a/crypto/engine/eng_dyn.c +++ b/crypto/engine/eng_dyn.c @@ -78,7 +78,7 @@ static int dynamic_load(ENGINE *e, dynamic_data_ctx *ctx); #define DYNAMIC_CMD_SO_PATH ENGINE_CMD_BASE #define DYNAMIC_CMD_NO_VCHECK (ENGINE_CMD_BASE + 1) -#define DYNAMIC_CMD_ENGINE_ID (ENGINE_CMD_BASE + 2) +#define DYNAMIC_CMD_ID (ENGINE_CMD_BASE + 2) #define DYNAMIC_CMD_LIST_ADD (ENGINE_CMD_BASE + 3) #define DYNAMIC_CMD_LOAD (ENGINE_CMD_BASE + 4) @@ -94,8 +94,8 @@ static const ENGINE_CMD_DEFN dynamic_cmd_defns[] = { "NO_VCHECK", "Specifies to continue even if version checking fails (boolean)", ENGINE_CMD_FLAG_NUMERIC}, - {DYNAMIC_CMD_ENGINE_ID, - "ENGINE_ID", + {DYNAMIC_CMD_ID, + "ID", "Specifies an ENGINE id name for loading", ENGINE_CMD_FLAG_STRING}, {DYNAMIC_CMD_LIST_ADD, @@ -315,7 +315,7 @@ static int dynamic_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) case DYNAMIC_CMD_NO_VCHECK: ctx->no_vcheck = ((i == 0) ? 0 : 1); return 1; - case DYNAMIC_CMD_ENGINE_ID: + case DYNAMIC_CMD_ID: /* a NULL 'p' or a string of zero-length is the same thing */ if(p && (strlen((const char *)p) < 1)) p = NULL; |