From ddf459f9aea6965295e69d443a94759cbe8ac4ec Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Thu, 20 Sep 2012 22:03:15 +0200 Subject: Fix grammar of a few comments --- src/idevicerestore.c | 2 +- src/recovery.c | 3 ++- 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) { -- cgit v1.1-32-gdbae