[Cryptech-Commits] [sw/libhal] branch rpc updated: Fix dispatch vector names.
git at cryptech.is
git at cryptech.is
Thu Dec 24 19:13:53 UTC 2015
This is an automated email from the git hooks/post-receive script.
sra at hactrn.net pushed a commit to branch rpc
in repository sw/libhal.
The following commit(s) were added to refs/heads/rpc by this push:
new a88a869 Fix dispatch vector names.
a88a869 is described below
commit a88a8695d30faeac3186ec88278fd075d85315d9
Author: Rob Austein <sra at hactrn.net>
Date: Thu Dec 24 14:13:07 2015 -0500
Fix dispatch vector names.
---
rpc_hash.c | 2 +-
rpc_misc.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/rpc_hash.c b/rpc_hash.c
index c6eab3a..df501cf 100644
--- a/rpc_hash.c
+++ b/rpc_hash.c
@@ -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
};
diff --git a/rpc_misc.c b/rpc_misc.c
index 2a7c610..bcd1974 100644
--- a/rpc_misc.c
+++ b/rpc_misc.c
@@ -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
};
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Commits
mailing list