diff options
author | Rob Austein <sra@hactrn.net> | 2017-04-24 17:23:17 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2017-04-24 17:23:17 -0400 |
commit | 4ee44177c6da04e210a52528763b2c96a8f3d824 (patch) | |
tree | 9b5522a53e961f56a9dc13bc00a54d40993851e3 /ks_volatile.c | |
parent | d008267960337e9e44b270b26555a7a894808746 (diff) |
Call a portable entrenching tool a portable entrenching tool.
Diffstat (limited to 'ks_volatile.c')
-rw-r--r-- | ks_volatile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ks_volatile.c b/ks_volatile.c index 363441a..29c3576 100644 --- a/ks_volatile.c +++ b/ks_volatile.c @@ -614,8 +614,8 @@ static hal_error_t ks_get_attributes(hal_ks_t *ks, return err; } -static void ks_client_cleanup(hal_ks_t *ks, - hal_client_handle_t client) +static void ks_logout(hal_ks_t *ks, + hal_client_handle_t client) { if (ks == NULL || client.handle = HAL_HANDLE_NONE) return HAL_ERROR_BAD_ARGUMENTS; @@ -652,7 +652,7 @@ const hal_ks_driver_t hal_ks_volatile_driver[1] = {{ .match = ks_match, .set_attributes = ks_set_attributes, .get_attributes = ks_get_attributes, - .client_cleanup = ks_client_cleanup + .logout = ks_logout }}; #endif /* STATIC_KS_VOLATILE_SLOTS > 0 */ |