diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/idevicerestore.c | 2 | ||||
| -rw-r--r-- | src/recovery.c | 3 | ||||
| -rw-r--r-- | src/restore.c | 2 | 
3 files changed, 4 insertions, 3 deletions
| diff --git a/src/idevicerestore.c b/src/idevicerestore.c index a566e65..3ed0f7e 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -344,7 +344,7 @@ int idevicerestore_start(struct idevicerestore_client_t* client)  	/* check if device type is supported by the given build manifest */  	if (build_manifest_check_compatibility(buildmanifest, client->device->product) < 0) { -		error("ERROR: could not make sure this firmware is suitable for the current device. refusing to continue.\n"); +		error("ERROR: Could not make sure this firmware is suitable for the current device. Refusing to continue.\n");  		return -1;  	} diff --git a/src/recovery.c b/src/recovery.c index 30532f8..71f808f 100644 --- a/src/recovery.c +++ b/src/recovery.c @@ -217,7 +217,8 @@ int recovery_send_ticket(struct idevicerestore_client_t* client)  	unsigned char* data = NULL;  	uint32_t size = 0;  	if (tss_get_ticket(client->tss, &data, &size) < 0) { -		error("ERROR: Unable to get ApTicket from TSS request\n");			return -1; +		error("ERROR: Unable to get ApTicket from TSS request\n"); +		return -1;  	}  	info("Sending APTicket (%d bytes)\n", size); diff --git a/src/restore.c b/src/restore.c index 0b720ca..150c5a6 100644 --- a/src/restore.c +++ b/src/restore.c @@ -825,7 +825,7 @@ int restore_send_nor(restored_client_t restore, struct idevicerestore_client_t*  	if (client->tss) {  		if (tss_get_entry_path(client->tss, "LLB", &llb_path) < 0) { -			debug("NOTE: could not get LLB path from TSS data, will fetch from build identity\n"); +			debug("NOTE: Could not get LLB path from TSS data, will fetch from build identity\n");  		}  	}  	if (llb_path == NULL) { | 
