diff options
author | Rob Austein <sra@hactrn.net> | 2015-12-24 14:13:07 -0500 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-12-24 14:13:07 -0500 |
commit | a88a8695d30faeac3186ec88278fd075d85315d9 (patch) | |
tree | 4054ce288348d4e9e59cb646523e53fd10abfe23 | |
parent | 1a7b3c31095762afebeab1cc1717259c0e3c5cc9 (diff) |
Fix dispatch vector names.
-rw-r--r-- | rpc_hash.c | 2 | ||||
-rw-r--r-- | rpc_misc.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -289,7 +289,7 @@ static hal_error_t finalize(const hal_hash_handle_t handle, return err; } -const hal_rpc_hash_dispatch_t hal_rpc_remote_hash_dispatch = { +const hal_rpc_hash_dispatch_t hal_rpc_local_hash_dispatch = { get_digest_length, get_digest_algorithm_id, get_algorithm, initialize, update, finalize }; @@ -218,7 +218,7 @@ static hal_error_t logout_all(void) return HAL_OK; } -const hal_rpc_misc_dispatch_t hal_rpc_remote_misc_dispatch = { +const hal_rpc_misc_dispatch_t hal_rpc_local_misc_dispatch = { set_pin, login, logout, logout_all, is_logged_in, get_random }; |