sealedkeys: call unseal_key_internal in unseal_key instead of seal_key_internal

This commit is contained in:
Lioncash 2018-02-23 07:42:45 -05:00
parent 9d95cfe759
commit a8721f0f91
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7

View File

@ -59,5 +59,5 @@ void unseal_key(unsigned int keyslot, const void *src, size_t src_size, unsigned
panic(); panic();
} }
seal_key_internal(dst, src, g_seal_key_sources[usecase]); unseal_key_internal(keyslot, src, g_seal_key_sources[usecase]);
} }