diff options
author | Rob Austein <sra@hactrn.net> | 2016-05-15 23:49:03 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-05-15 23:49:03 -0400 |
commit | 19de5cd21bde4dcee12c40cd53d5592cbd91bc7b (patch) | |
tree | 94601108c51a3417a0bcea9c0955a55c34ab8db1 /ks_flash.c | |
parent | 0690aa3d48966a4b151a468fd3a0a65bb99de439 (diff) |
Tweak keystore API to allow update-in-place, so hal_ks_rename() will work.
Diffstat (limited to 'ks_flash.c')
-rw-r--r-- | ks_flash.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -46,9 +46,10 @@ const hal_ks_keydb_t *hal_ks_get_keydb(void) } hal_error_t hal_ks_set_keydb(const hal_ks_key_t * const key, - const int loc) + const int loc, + const int updating) { - if (key == NULL || loc < 0 || loc >= sizeof(db->keys)/sizeof(*db->keys) || key->in_use) + if (key == NULL || loc < 0 || loc >= sizeof(db->keys)/sizeof(*db->keys) || (!key->in_use != !updating)) return HAL_ERROR_BAD_ARGUMENTS; #error Not sure what goes here yet either |