From a8721f0f9171677f9629fa41b81381c34a433eba Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 23 Feb 2018 07:42:45 -0500 Subject: [PATCH] sealedkeys: call unseal_key_internal in unseal_key instead of seal_key_internal --- exosphere/sealedkeys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exosphere/sealedkeys.c b/exosphere/sealedkeys.c index 668af8005..42c0b89e7 100644 --- a/exosphere/sealedkeys.c +++ b/exosphere/sealedkeys.c @@ -59,5 +59,5 @@ void unseal_key(unsigned int keyslot, const void *src, size_t src_size, unsigned panic(); } - seal_key_internal(dst, src, g_seal_key_sources[usecase]); + unseal_key_internal(keyslot, src, g_seal_key_sources[usecase]); } \ No newline at end of file