summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2012-09-20 22:22:52 +0200
committerGravatar Martin Szulecki2012-11-07 22:24:47 +0100
commit66c76d59062ca23146aceb1d5093f8a135526637 (patch)
tree490666f9a6a81466b0133e6655e07d486c331f11 /src
parent954cc07288cee8522730b75e338b7c8036eba992 (diff)
downloadidevicerestore-66c76d59062ca23146aceb1d5093f8a135526637.tar.gz
idevicerestore-66c76d59062ca23146aceb1d5093f8a135526637.tar.bz2
restore: Change wording to "personalized" instead of "signed"
Diffstat (limited to 'src')
-rw-r--r--src/restore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/restore.c b/src/restore.c
index 0c9fce4..c6b41cc 100644
--- a/src/restore.c
+++ b/src/restore.c
@@ -859,7 +859,7 @@ int restore_send_nor(restored_client_t restore, struct idevicerestore_client_t*
}
if (ipsw_get_component_by_path(client->ipsw, client->tss, "LLB", llb_path, &llb_data, &llb_size) < 0) {
- error("ERROR: Unable to get signed LLB\n");
+ error("ERROR: Unable to get personalized LLB\n");
return -1;
}
@@ -878,7 +878,7 @@ int restore_send_nor(restored_client_t restore, struct idevicerestore_client_t*
memset(firmware_filename, '\0', sizeof(firmware_filename));
snprintf(firmware_filename, sizeof(firmware_filename), "%s/%s", firmware_path, filename);
if (ipsw_get_component_by_path(client->ipsw, client->tss, get_component_name(filename), firmware_filename, &nor_data, &nor_size) < 0) {
- error("ERROR: Unable to get signed firmware file %s\n", firmware_filename);
+ error("ERROR: Unable to get personalized firmware file %s\n", firmware_filename);
break;
}