aboutsummaryrefslogtreecommitdiff
path: root/rpc_pkey.c
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-11-14 15:15:46 -0500
committerRob Austein <sra@hactrn.net>2016-11-14 15:15:46 -0500
commitd6e9917d07ddb0a5f8218fecdcd8bda3a1104912 (patch)
treec08ccde715ab554eae616bd80501c25103ab427d /rpc_pkey.c
parent58a9ca87db1a8d9e75f830a508ab1040c1bd889f (diff)
hal_rpc_pkey_find() -> hal_rpc_pkey_open().
Diffstat (limited to 'rpc_pkey.c')
-rw-r--r--rpc_pkey.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpc_pkey.c b/rpc_pkey.c
index 0310647..787f811 100644
--- a/rpc_pkey.c
+++ b/rpc_pkey.c
@@ -264,7 +264,7 @@ static hal_error_t pkey_local_load(const hal_client_handle_t client,
* Look up a key given its name, return a key handle.
*/
-static hal_error_t pkey_local_find(const hal_client_handle_t client,
+static hal_error_t pkey_local_open(const hal_client_handle_t client,
const hal_session_handle_t session,
hal_pkey_handle_t *pkey,
const hal_uuid_t * const name,
@@ -1027,7 +1027,7 @@ static hal_error_t pkey_local_get_attributes(const hal_pkey_handle_t pkey,
const hal_rpc_pkey_dispatch_t hal_rpc_local_pkey_dispatch = {
pkey_local_load,
- pkey_local_find,
+ pkey_local_open,
pkey_local_generate_rsa,
pkey_local_generate_ec,
pkey_local_close,