diff options
author | Paul Selkirk <paul@psgd.org> | 2016-03-29 16:48:07 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2016-03-29 16:48:07 -0400 |
commit | 438b50688ca6e4acd641ab568adb66f18fdd362e (patch) | |
tree | 03bc9b3e6c9786546de31134247a46dad5c5aa40 /rpc_client.c | |
parent | 14465a488fafbfb4837bad5652508784c8941f38 (diff) |
Enable 'mixed' mode, with client-side hashing.
Diffstat (limited to 'rpc_client.c')
-rw-r--r-- | rpc_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc_client.c b/rpc_client.c index 5903895..ae7e7e2 100644 --- a/rpc_client.c +++ b/rpc_client.c @@ -782,7 +782,7 @@ const hal_rpc_hash_dispatch_t * hal_rpc_hash_dispatch = &hal_rpc_remote_hash_dis const hal_rpc_pkey_dispatch_t * hal_rpc_pkey_dispatch = &hal_rpc_remote_pkey_dispatch; #elif RPC_CLIENT == RPC_CLIENT_MIXED const hal_rpc_misc_dispatch_t * hal_rpc_misc_dispatch = &hal_rpc_remote_misc_dispatch; -const hal_rpc_hash_dispatch_t * hal_rpc_hash_dispatch = &hal_rpc_remote_hash_dispatch; //mixed? +const hal_rpc_hash_dispatch_t * hal_rpc_hash_dispatch = &hal_rpc_local_hash_dispatch; const hal_rpc_pkey_dispatch_t * hal_rpc_pkey_dispatch = &hal_rpc_mixed_pkey_dispatch; #endif |