summaryrefslogtreecommitdiff
path: root/README.ENGINE
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2002-07-08 15:16:10 +0000
committerGeoff Thorpe <geoff@openssl.org>2002-07-08 15:16:10 +0000
commit2c8ad4f1af8ac7ac1146249c462538fee82cceac (patch)
treee5d19e73576fa09254887253f36e5480c9bc3d26 /README.ENGINE
parent121dea3f858d2ba34b765c7542d9a51c330dad5a (diff)
downloadopenssl-new-2c8ad4f1af8ac7ac1146249c462538fee82cceac.tar.gz
oops, there were other cases of "ENGINE_ID" to change too.
Diffstat (limited to 'README.ENGINE')
-rw-r--r--README.ENGINE4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.ENGINE b/README.ENGINE
index 4af520958e..0ff8333709 100644
--- a/README.ENGINE
+++ b/README.ENGINE
@@ -154,7 +154,7 @@
shared-library that contains the ENGINE implementation, and "NO_VCHECK"
might possibly be useful if there is a minor version conflict and you
(or a vendor helpdesk) is convinced you can safely ignore it.
- "ENGINE_ID" is probably only needed if a shared-library implements
+ "ID" is probably only needed if a shared-library implements
multiple ENGINEs, but if you know the engine id you expect to be using,
it doesn't hurt to specify it (and this provides a sanity check if
nothing else). "LIST_ADD" is only required if you actually wish the
@@ -174,7 +174,7 @@
ENGINE *e = ENGINE_by_id("dynamic");
ENGINE_ctrl_cmd_string(e, "SO_PATH", "/lib/libfoo.so", 0);
- ENGINE_ctrl_cmd_string(e, "ENGINE_ID", "foo", 0);
+ ENGINE_ctrl_cmd_string(e, "ID", "foo", 0);
ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0);
ENGINE_ctrl_cmd_string(e, "CMD_FOO", "some input data", 0);