Fix typo in thread_import_key

Signed-off-by: Ryan Everett <ryan.everett@arm.com>
This commit is contained in:
Ryan Everett 2024-03-14 17:49:44 +00:00
parent f111f35478
commit 6c488709d6

View File

@ -1361,7 +1361,7 @@ void *thread_import_key(void *ctx)
same_key_context *skc = (struct same_key_context *) ctx;
psa_key_attributes_t got_attributes = PSA_KEY_ATTRIBUTES_INIT;
/* Import the key, exactly one thread must succceed. */
/* Import the key, exactly one thread must succeed. */
psa_status_t status = psa_import_key(skc->attributes, skc->data->x,
skc->data->len, &returned_key_id);
switch (status) {