diff options
author | Martin Szulecki | 2012-07-17 19:39:59 +0200 |
---|---|---|
committer | Nikias Bassen | 2012-07-17 19:39:59 +0200 |
commit | b946da48d08bc52f78103a196dc3c23b23889830 (patch) | |
tree | 88593e10e6000b99d9fa0a52426be4db4b1946f4 /src/idevicerestore.c | |
parent | 266b5cbbf49c8df964e6e44e711ee7a94f7dfc50 (diff) | |
download | idevicerestore-b946da48d08bc52f78103a196dc3c23b23889830.tar.gz idevicerestore-b946da48d08bc52f78103a196dc3c23b23889830.tar.bz2 |
tss: Don't crash on errors like failed connection attempts and be more verbose
Diffstat (limited to 'src/idevicerestore.c')
-rw-r--r-- | src/idevicerestore.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c index 5080146..f33df1d 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -1302,7 +1302,6 @@ int get_shsh_blobs(struct idevicerestore_client_t* client, uint64_t ecid, unsign return -1; } - info("Sending TSS request... "); response = tss_send_request(request); if (response == NULL) { info("ERROR: Unable to send TSS request\n"); @@ -1310,7 +1309,7 @@ int get_shsh_blobs(struct idevicerestore_client_t* client, uint64_t ecid, unsign return -1; } - info("received SHSH blobs\n"); + info("Received SHSH blobs\n"); plist_free(request); *tss = response; |