diff options
author | Rob Austein <sra@hactrn.net> | 2017-05-30 19:26:50 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2017-05-30 19:26:50 -0400 |
commit | b9188794e2634aa4918ba46298b88f03f2454dd4 (patch) | |
tree | d0e5df020f2b18b5964b4cde1a044cfbf8819e06 | |
parent | f3a7d2993b46e981208ac68996db609a31d80163 (diff) |
Missed one instance of one API change in "logout" branch merge.
-rw-r--r-- | ks_volatile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ks_volatile.c b/ks_volatile.c index 57806e8..2b5bb61 100644 --- a/ks_volatile.c +++ b/ks_volatile.c @@ -235,8 +235,8 @@ static hal_error_t ks_volatile_logout(hal_ks_t *ks, if (db->keys[b].client.handle != client.handle) continue; - if ((err = hal_ks_index_delete(ks, &ks->names[b], 0, NULL, &hint)) != HAL_OK || - (err = hal_ks_block_zero(ks, b)) != HAL_OK) + if ((err = hal_ks_index_delete(ks, &ks->names[b], NULL, &hint)) != HAL_OK || + (err = hal_ks_block_zero(ks, b)) != HAL_OK) return err; i--; |