From 73f30fdfed7cb4a6d0002e30b204571434d1fb3a Mon Sep 17 00:00:00 2001 From: Julius Trinkunas Date: Wed, 22 Jul 2015 18:19:02 +0300 Subject: [PATCH] Add text for 0xe8008019 error. --- errors.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/errors.h b/errors.h index 106ab28..4cdebec 100644 --- a/errors.h +++ b/errors.h @@ -168,7 +168,9 @@ static errorcode_to_id_t errorcode_to_id[] = { { 0xe800009b, "kAMDMCChallengeRequired" }, { 0xe800009c, "kAMDMissingBundleVersionError" }, + // Errors without id->string mapping. { 0xe8008015, "A valid provisioning profile for this executable was not found."}, + { 0xe8008019, "The application does not have a valid signature." }, }; const int errorcode_to_id_count = sizeof(errorcode_to_id) / sizeof(errorcode_to_id_t);